/home3/bmscom/webinar.bmice.com/wp-content/plugins/webinar-ignition/UI/app/tab4.php
<?php defined( 'ABSPATH' ) || exit; ?>
<div class="tabber" id="tab4" style="display: none;">

<div class="titleBar">
    <div class="titleBarIcon">
        <!-- <i class="icon-copy icon-5x"></i> -->
    </div>

    <div class="titleBarText">
        <h2><?php esc_html_e( "Thank You Page Settings:", 'webinarignition' ) ?></h2>

        <p><?php esc_html_e( "Here you can edit & manage your webinar registration thank you page...", 'webinarignition' ) ?></p>

    </div>

    <div class="launchConsole">
      <?php
      if ($webinar_data->webinar_date == "AUTO") {
	      $preview_url = add_query_arg( ['thankyou' =>'', 'lid' => '[lead_id]', 'preview' => 'true'], get_the_permalink($data->postID));
      } else {
	      $preview_url = add_query_arg( ['thankyou' =>'', 'lid' => '[lead_id]', 'preview' => 'true'], get_the_permalink($data->postID));
      }
      ?>
        <a
                href="<?php echo $preview_url; ?>"
                target="_blank"
                data-default-href="<?php echo $preview_url; ?>"
                class="custom_thankyou_page-webinarPreviewLinkDefaultHolder"
        >
            <i class="icon-external-link-sign"></i>
            <?php esc_html_e( "Preview Thank You Page", 'webinarignition' ) ?>
        </a>
    </div>

    <br clear="all"/>

    <?php $input_get     = filter_input_array(INPUT_GET); ?>

</div>


<?php
    webinarignition_display_edit_toggle(
    "edit-sign",
    esc_html__( "Thank You Page Actions", 'webinarignition' ),
    "we_edit_ty_actions",
    esc_html__( "Enable/Disable Thank-You/Confirmation page", "webinarignition")
    );

    ?>

    <div id="we_edit_ty_actions" class="we_edit_area">
        <?php

if ($webinar_data->webinar_date == "AUTO") {

        webinarignition_display_option(
            $input_get['id'],
            $webinar_data->skip_ty_page,
            esc_html__( "Skip Thank you page for future date webinars", 'webinarignition' ),
            "skip_ty_page",
            esc_html__( "For future-date webinars, users will be sent to the Thank-You/Confirmation page after registration. You can disable this here...", 'webinarignition' ),
            esc_html__( "Disable", 'webinarignition' ) . " [no]," . esc_html__( "Enable", 'webinarignition' ) . " [yes]"
        );

        webinarignition_display_option(
            $input_get['id'],
            $webinar_data->skip_instant_acces_confirm_page,
            esc_html__( "Skip Thank you page for Instant Access webinars", 'webinarignition' ),
            "skip_instant_acces_confirm_page",
            esc_html__( "By default, attendees will be automatically redirected to the webinar if they choose to watch the webinar instantly. You can disable this here..", 'webinarignition' ),
            esc_html__( "Enable", 'webinarignition' ) . " [yes]," . esc_html__( "Disable", 'webinarignition' ) . " [no]"
        );

} else {

        webinarignition_display_option(
            $input_get['id'],
            $webinar_data->skip_ty_page,
            esc_html__( "Skip Thank you page", 'webinarignition' ),
            "skip_ty_page",
            esc_html__( "By default, attendees will be sent to the Thank-You/Confirmation page after registration. You can disable this here..", 'webinarignition' ),
            esc_html__( "Disable", 'webinarignition' ) . " [no]," . esc_html__( "Enable", 'webinarignition' ) . " [yes]"
        );

}
        ?>
    </div>

<?php

webinarignition_display_edit_toggle(
    "edit-sign",
    esc_html__( "Thank You Headline", 'webinarignition' ),
    "we_edit_ty_headline",
    esc_html__( "This appears above the thank you area...", 'webinarignition' )
);

?>

<div id="we_edit_ty_headline" class="we_edit_area">
    <?php WebinarignitionPowerupsShortcodes::show_shortcode_description('ty_headline', $webinar_data, true, true) ?>
    <?php
    webinarignition_display_field(
        $input_get['id'],
        $webinar_data->ty_ticket_headline,
        esc_html__( "Main Headline", 'webinarignition' ),
        "ty_ticket_headline",
        esc_html__( "This is the copy that is shown at the top of page...", 'webinarignition' ),
        esc_html__( "e.g. Congrats - Your Are Signed Up For The Event!", 'webinarignition' )
    );
    webinarignition_display_field(
        $input_get['id'],
        $webinar_data->ty_ticket_subheadline,
        esc_html__( "Ticket Sub Headline", 'webinarignition' ),
        "ty_ticket_subheadline",
        esc_html__( "This is shown under the main headline...", 'webinarignition' ),
        esc_html__( "e.g. Below Is Everything You Need For The Event...", 'webinarignition' )
    );
    ?>
</div>

<?php

webinarignition_display_edit_toggle(
    "play-sign",
    esc_html__( "Thank You Message Area - Copy / Video / Image Settings", 'webinarignition' ),
    "we_edit_ty_video",
    esc_html__( "Setup your thank you message / video / image for when they opt in and are on the thank you page...", 'webinarignition' )
);

?>

<div id="we_edit_ty_video" class="we_edit_area">
    <?php WebinarignitionPowerupsShortcodes::show_shortcode_description('ty_message_area', $webinar_data, true, true) ?>
    <?php
    webinarignition_display_color(
        $input_get['id'],
        isset($webinar_data->ty_cta_bg_color) ? $webinar_data->ty_cta_bg_color : '',
        esc_html__( "CTA Area Background Color", 'webinarignition' ),
        "ty_cta_bg_color",
        esc_html__( "This is the color for the CTA area that video or image is displayed, a good contrast color will get a lot of attention for this area...", 'webinarignition' ),
        "#000000"
    );
    webinarignition_display_option(
        $input_get['id'],
        $webinar_data->ty_cta_type,
        esc_html__( "CTA Type:", 'webinarignition' ),
        "ty_cta_type",
        esc_html__( "You can choose to display a video embed code or have an image to be shown here. A video will get higher results...", 'webinarignition' ),
        esc_html__( "Show HTML", 'webinarignition' ) . " [html]," . esc_html__( "Show Video", 'webinarignition' ) . " [video], " . esc_html__( "Show Image", 'webinarignition' ) . " [image]"
    );
    ?>
    <div class="ty_cta_type" id="ty_cta_type_video" style="display: none;">
        <?php
        webinarignition_display_field_add_media(
	        $input_get['id'],
	        isset($webinar_data->ty_cta_video_url) ? $webinar_data->ty_cta_video_url : '',
	        esc_html__( "Video URL .MP4 *", 'webinarignition' ),
	        'ty_cta_video_url',
	        esc_html__( "The MP4 file that you want to play as your CTA... must be in .mp4 format as its uses a html5 video player...", 'webinarignition' ),
	        esc_html__( "Ex. http://yoursite.com/webinar-video.mp4", 'webinarignition' )
        );

        webinarignition_display_textarea(
            $input_get['id'],
            $webinar_data->ty_cta_video_code,
            esc_html__( "Video Embed Code", 'webinarignition' ),
            "ty_cta_video_code",
            __( "This is your video embed code. Your video will be auto-resized to fit the area which is <b>410px width and 231px height</b> <Br><br>EasyVideoPlayer users must resize their video manually...", 'webinarignition' ),
            esc_html__( "e.g. Youtube embed code, Vimeo embed code, etc", 'webinarignition' )
        );

        webinarignition_display_info(
            esc_html__( "Note: Video Size", 'webinarignition' ),
            esc_html__( "The video will be auto-resized to fit the page at 410x231 - make sure your video is a similiar aspect ratio...", 'webinarignition' )
        );
        ?>
    </div>

    <div class="ty_cta_type" id="ty_cta_type_image" style="display: none;">
        <?php
        webinarignition_display_field_image_upd(
            $input_get['id'],
            $webinar_data->ty_cta_image,
            esc_html__( "CTA Image URL", 'webinarignition' ),
            "ty_cta_image",
            __( "This is the image that will be shown in the main cta area, this image will be resized to fit the area: <strong>500px width and 281px height</strong>...", 'webinarignition' ),
            esc_html__( "http://yoursite.com/cta-image.png", "webinarignition")
        );
        ?>
    </div>

    <div class="ty_cta_type" id="ty_cta_type_html">
        <?php
        webinarignition_display_wpeditor(
            $input_get['id'],
            $webinar_data->ty_cta_html,
            esc_html__( "CTA HTML Copy", 'webinarignition' ),
            "ty_cta_html",
            esc_html__( "This is the copy that is shown on the right of the event ticket area...", 'webinarignition' )
        );
        ?>
    </div>

</div>

<?php

webinarignition_display_edit_toggle(
    "link",
    esc_html__( "Grab Webinar URL", 'webinarignition' ),
    "we_edit_ty_step1",
    esc_html__( "This is the area for the webinar URL...", 'webinarignition' )
);

?>

<div id="we_edit_ty_step1" class="we_edit_area">
    <?php WebinarignitionPowerupsShortcodes::show_shortcode_description('ty_webinar_url', $webinar_data, true, true) ?>
    <?php
    webinarignition_display_field(
        $input_get['id'],
        $webinar_data->ty_webinar_headline,
        esc_html__( "Webinar URL Title Copy", 'webinarignition' ),
        "ty_webinar_headline",
        esc_html__( "This is the the title for the webinar URL which appears above the webinar URL form field...", 'webinarignition' ),
        esc_html__( "e.g. Here is the webinar URL...", 'webinarignition' )
    );
    webinarignition_display_field(
        $input_get['id'],
        $webinar_data->ty_webinar_subheadline,
        esc_html__( "Webinar URL Sub Title Copy", 'webinarignition' ),
        "ty_webinar_subheadline",
        esc_html__( "This is the sub title that is shown UNDER the webinar url form field...", 'webinarignition' ),
        esc_html__( "e.g. Save and bookmark this URL so you can get access to the live webinar and webinar replay...", 'webinarignition' )
    );
    if ($webinar_data->webinar_date == "AUTO") {
    } else {
        webinarignition_display_option(
            $input_get['id'],
            $webinar_data->ty_webinar_url,
            esc_html__( "Webinar URL", 'webinarignition' ),
            "ty_webinar_url",
            esc_html__( "The webinar URL type, you can either display the webinar link for this webinar OR if you want to use your own live webinar page, you can enter in a custom URL...", 'webinarignition' ),
            esc_html__( "WebinarIgnition URL", 'webinarignition' ) . " [we]," . esc_html__( "Custom Webinar URL", 'webinarignition' ) . " [custom]"
        );
        ?>

        <div style="display: none;" class="ty_webinar_url" id="ty_webinar_url_custom">
            <?php
            webinarignition_display_field(
                $input_get['id'],
                $webinar_data->ty_werbinar_custom_url,
                esc_html__( "Custom Webinar URL", 'webinarignition' ),
                "ty_werbinar_custom_url",
                esc_html__( "This is the url where your webinar will be viewable... This is only if you want to use your own webinar page with another service...", 'webinarignition' ),
                esc_html__( "e.g. http://yoursite.com/webinar-page.php", 'webinarignition' )
            );
            ?>
        </div>
    <?php } ?>

</div>

<?php
webinarignition_display_edit_toggle(
    "twitter-sign",
    esc_html__( "Share & Unlock Gift", 'webinarignition' ),
    "we_edit_ty_share",
    esc_html__( "This is the headline area for above the share / social unlock area...", 'webinarignition' )
);
?>

<div id="we_edit_ty_share" class="we_edit_area">
    <?php WebinarignitionPowerupsShortcodes::show_shortcode_description('ty_share_gift', $webinar_data, true, true) ?>
    <?php
    webinarignition_display_option(
        $input_get['id'],
        $webinar_data->ty_share_toggle,
        esc_html__( "Share Unlock Settings", 'webinarignition' ),
        "ty_share_toggle",
        esc_html__( "Here you can have it where you give a reward for sharing the webinar link...", 'webinarignition' ),
        esc_html__( "Disable Share Unlock", 'webinarignition' ) . " [none]," . esc_html__( "Enable Share Unlock", 'webinarignition' ) . " [block]"
    );

    webinarignition_display_info(
        esc_html__( "Note: Share Title & Description", 'webinarignition' ),
        esc_html__( "The share title and description are the landing page META info which can be found in the registration page settings area...", 'webinarignition' )
    );

    ?>
    <div class="ty_share_toggle" id="ty_share_toggle_block">
        <?php
        webinarignition_display_field(
            $input_get['id'],
            $webinar_data->ty_step2_headline,
            esc_html__( "Step #2 Headline Copy", 'webinarignition' ),
            "ty_step2_headline",
            esc_html__( "This is the copy that is shown above the sharing / unlock options...", 'webinarignition' ),
            esc_html__( "e.g. Step #2: Share & Unlock Free Gift...", 'webinarignition' )
        );
        webinarignition_display_option(
            $input_get['id'],
            $webinar_data->ty_fb_share,
            esc_html__( "Facebook Share", 'webinarignition' ),
            "ty_fb_share",
            esc_html__( "You can turn on or off the Facebook like area...", 'webinarignition' ),
            esc_html__( "Enable", 'webinarignition' ) . " [on]," . esc_html__( "Disable", 'webinarignition' ) . " [off]"
        );
        webinarignition_display_option(
            $input_get['id'],
            $webinar_data->ty_tw_share,
            esc_html__( "Twitter Share", 'webinarignition' ),
            "ty_tw_share",
            esc_html__( "You can turn on or off the Twiter like area...", 'webinarignition' ),
            esc_html__( "Enable", 'webinarignition' ) . " [on]," . esc_html__( "Disable", 'webinarignition' ) . " [off]"
        );

        webinarignition_display_wpeditor(
            $input_get['id'],
            $webinar_data->ty_share_intro,
            esc_html__( "Pre-Share Copy", 'webinarignition' ),
            "ty_share_intro",
            esc_html__( "This is the copy that is shown under the share options before they share to unlock the reward...", 'webinarignition' )
        );
        webinarignition_display_wpeditor(
            $input_get['id'],
            $webinar_data->ty_share_reveal,
            esc_html__( "Post-Share Reveal Copy", 'webinarignition' ),
            "ty_share_reveal",
            esc_html__( "This is the copy that is shown after they share on one of the social networks, best to have your download link to the free offer here...", 'webinarignition' )
        );
        ?>
    </div>

</div>

<?php

 webinarignition_display_edit_toggle(
     "ticket",
     esc_html__("Ticket / Webinar Info Block", 'webinarignition' ),
     "we_edit_ty_ticket",
     esc_html__( "This is a block for the webinar information, quick snap shot...", 'webinarignition' )
 );

?>

<div id="we_edit_ty_ticket" class="we_edit_area">
    <?php
    webinarignition_display_option(
        $input_get['id'],
        $webinar_data->ty_ticket_webinar_option,
        esc_html__( "Webinar Event Title", 'webinarignition' ),
        "ty_ticket_webinar_option",
        esc_html__( "This is the webinar event title, you can use the webinar settings, or use custom event title...", 'webinarignition' ),
        esc_html__( "Use Webinar Settings", 'webinarignition' ) . " [webinar]," . esc_html__( "Custom Webinar Copy", 'webinarignition' ) . " [custom]"
    );
    ?>
    <?php WebinarignitionPowerupsShortcodes::show_shortcode_description('ty_ticket_webinar', $webinar_data, true, true) ?>
    <div style="display:none;" class="ty_ticket_webinar_option" id="ty_ticket_webinar_option_custom">
        <?php
        webinarignition_display_field(
            $input_get['id'],
            $webinar_data->ty_ticket_webinar,
            esc_html__( "Webinar", 'webinarignition' ),
            "ty_ticket_webinar",
            esc_html__( "This is the text for the Webinar text (for translating), leave blank if you don't need to translate this...", 'webinarignition' ),
            esc_html__( "e.g. Webinar", 'webinarignition' )
        );
        webinarignition_display_field(
            $input_get['id'],
            $webinar_data->ty_webinar_option_custom_title,
            esc_html__( "Custom Webinar Title", 'webinarignition' ),
            "ty_webinar_option_custom_title",
            esc_html__( "This is shown next to the webinar copy, this is a custom event title...", 'webinarignition' ),
            esc_html__( "e.g. Super Awesome Webinar...", 'webinarignition' )
        );
        ?>
    </div>
    <?php
    webinarignition_display_option(
        $input_get['id'],
        $webinar_data->ty_ticket_host_option,
        esc_html__( "Host Title", 'webinarignition' ),
        "ty_ticket_host_option",
        esc_html__( "This is the host title, you can use the webinar settings, or use custom host title...", 'webinarignition' ),
        esc_html__( "Use Webinar Settings", 'webinarignition' ) . " [webinar]," . esc_html__( "Custom Host Copy", 'webinarignition' ) . " [custom]"
    );
    ?>
    <?php WebinarignitionPowerupsShortcodes::show_shortcode_description('ty_ticket_host', $webinar_data, true, true) ?>
    <div class="ty_ticket_host_option" id="ty_ticket_host_option_custom" style="display: none;">
        <?php
        webinarignition_display_field(
            $input_get['id'],
            $webinar_data->ty_ticket_host,
            esc_html__( "Host", 'webinarignition' ),
            "ty_ticket_host",
            esc_html__( "This is the text for the Host text (for translating), leave blank if you don't need to translate this...", 'webinarignition' ),
            esc_html__( "e.g. Host", 'webinarignition' )
        );
        webinarignition_display_field(
            $input_get['id'],
            $webinar_data->ty_webinar_option_custom_host,
            esc_html__( "Custom Webinar Host", 'webinarignition' ),
            "ty_webinar_option_custom_host",
            esc_html__( "This is shown next to the host copy, this is a custom host title...", 'webinarignition' ),
            esc_html__( "e.g. Mike Smith", 'webinarignition' )
        );
        ?>
    </div>

    <?php

    webinarignition_display_option(
        $input_get['id'],
        $webinar_data->ty_ticket_date_option,
        esc_html__( "Date Title", 'webinarignition' ),
        "ty_ticket_date_option",
        esc_html__( "This is the date, you can use the webinar settings, or use custom date...", 'webinarignition' ),
        esc_html__( "Use Webinar Settings", 'webinarignition' ) . " [webinar]," . esc_html__( "Custom Date Copy", 'webinarignition' ) . " [custom]"
    );

    ?>
    <?php WebinarignitionPowerupsShortcodes::show_shortcode_description('ty_ticket_date', $webinar_data, true, true) ?>
    <div class="ty_ticket_date_option" id="ty_ticket_date_option_custom" style="display: none;">
        <?php
        webinarignition_display_field(
            $input_get['id'],
            $webinar_data->ty_ticket_date,
            esc_html__( "Date", 'webinarignition' ),
            "ty_ticket_date",
            esc_html__( "This is the text for the date text (for translating), leave blank if you don't need to translate this...", 'webinarignition' ),
            esc_html__( "e.g. Date", 'webinarignition' )
        );
        if ($webinar_data->webinar_date != "AUTO") {

          webinarignition_display_field(
              $input_get['id'],
              $webinar_data->ty_webinar_option_custom_date,
              esc_html__( "Custom Webinar Date", 'webinarignition' ),
              "ty_webinar_option_custom_date",
              esc_html__( "This is shown next to the date copy, this is a custom Date...", 'webinarignition' ),
              esc_html__( "e.g. May 4th", 'webinarignition' )
          );

        }
        ?>
    </div>

    <?php
    webinarignition_display_option(
        $input_get['id'],
        $webinar_data->ty_ticket_time_option,
        esc_html__( "Time Title", 'webinarignition' ),
        "ty_ticket_time_option",
        esc_html__( "This is the time, you can use the webinar settings, or use custom time...", 'webinarignition' ),
        esc_html__( "Use Webinar Settings", 'webinarignition' ) . " [webinar]," . esc_html__( "Custom Time Copy", 'webinarignition' ) . " [custom]"
    );
    ?>
    <div class="ty_ticket_time_option" id="ty_ticket_time_option_custom" style="display: none;">
        <?php
        webinarignition_display_field(
            $input_get['id'],
            $webinar_data->ty_ticket_time,
            esc_html__( "Time", 'webinarignition' ),
            "ty_ticket_time",
            esc_html__( "This is the text for the time text (for translating), leave blank if you don't need to translate this...", 'webinarignition' ),
            esc_html__( "e.g. Date", 'webinarignition' )
        );
        if ($webinar_data->webinar_date != "AUTO") {

            webinarignition_display_field(
                $input_get['id'],
                $webinar_data->ty_webinar_option_custom_time,
                esc_html__( "Custom Webinar Time", 'webinarignition' ),
                "ty_webinar_option_custom_time",
                esc_html__( "This is shown next to the time copy, this is a custom time...", 'webinarignition' ),
                esc_html__( "e.g. At 4pm, EST time...", 'webinarignition' )
            );

        }
        ?>
    </div>
</div>

<?php
webinarignition_display_edit_toggle(
    "time",
    esc_html__( "Mini Countdown Area", 'webinarignition' ),
    "we_edit_ty_cdarea",
    esc_html__( "This is the mini countdown area that displays in the ticket area...", 'webinarignition' )
);
?>

<div id="we_edit_ty_cdarea" class="we_edit_area">
    <?php WebinarignitionPowerupsShortcodes::show_shortcode_description('ty_countdown', $webinar_data, true, true) ?>

    <div class="tycdarea" id="tycdarea_show">
        <?php
        webinarignition_display_field(
            $input_get['id'],
            $webinar_data->tycd_countdown,
            esc_html__( "Counting Down Copy", 'webinarignition' ),
            "tycd_countdown",
            esc_html__( "This is the copy display above the countdown timer...", 'webinarignition' ),
            esc_html__( "e.g. Webinar Starts In:", 'webinarignition' )
        );

        webinarignition_display_field(
            $input_get['id'],
            $webinar_data->tycd_progress,
            esc_html__( "View Webinar Button", 'webinarignition' ),
            "tycd_progress",
            esc_html__( "This is the copy that is shown on the button when the countdown is down to zero, and the button links to the webinar...", 'webinarignition' ),
            esc_html__( "e.g. Webinar In Progress", 'webinarignition' )
        );

        //translation of coompact labels for countdown, used in compact mode
        webinarignition_display_field(
            $input_get['id'],
            $webinar_data->tycd_years,
            esc_html__( "Translate::Years", 'webinarignition' ),
            "tycd_years",
            esc_html__( "Label used to describe years in countdown compact mode.", 'webinarignition' ),
            esc_html__( "Default: y", 'webinarignition' )
        );
        webinarignition_display_field(
            $input_get['id'],
            $webinar_data->tycd_months,
            esc_html__( "Translate::Months", 'webinarignition' ),
            "tycd_months",
            esc_html__( "Label used to describe months in countdown compact mode.", 'webinarignition' ),
            esc_html__( "Default: m", 'webinarignition' )
        );
        webinarignition_display_field(
            $input_get['id'],
            $webinar_data->tycd_weeks,
            esc_html__( "Translate::Weeks", 'webinarignition' ),
            "tycd_weeks",
            esc_html__( "Label used to describe weeks in countdown compact mode.", 'webinarignition' ),
            esc_html__( "Default: w", 'webinarignition' )
        );
        webinarignition_display_field(
            $input_get['id'],
            $webinar_data->tycd_days,
            esc_html__( "Translate::Days", 'webinarignition' ),
            "tycd_days",
            esc_html__( "Label used to describe days in countdown compact mode.", 'webinarignition' ),
            esc_html__( "Default: d", 'webinarignition' )
        );
        ?>
    </div>

</div>

<?php

webinarignition_display_edit_toggle(
    "calendar",
    esc_html__( "Add To Calendar Block", 'webinarignition' ),
    "we_edit_ty_addtocalendar",
    esc_html__( "This is for the for the buttons to add the webinar to their calendars...", 'webinarignition' )
);

?>

<div id="we_edit_ty_addtocalendar" class="we_edit_area">
    <?php WebinarignitionPowerupsShortcodes::show_shortcode_description('ty_calendar_reminder', $webinar_data, true, true) ?>

    <?php
    webinarignition_display_option(
        $input_get['id'],
        $webinar_data->ty_add_to_calendar_option,
        esc_html__( "Display Add To Calendar Block", 'webinarignition' ),
        "ty_add_to_calendar_option",
        esc_html__( "Decide whether or not to display the Add To Calendar Option on the Thank You page", 'webinarignition' ),
        esc_html__( "Enable", 'webinarignition' ) . " [enable]," . esc_html__( "Disable", 'webinarignition' ) . " [disable]"
    );

    webinarignition_display_field(
        $input_get['id'],
        $webinar_data->ty_calendar_headline,
        esc_html__( "Add To Calendar Headline", 'webinarignition' ),
        "ty_calendar_headline",
        esc_html__( "This is the headline for the add to calendar area...", 'webinarignition' ),
        esc_html__( "e.g. Add To Calendar", 'webinarignition' )
    );

    webinarignition_display_field(
        $input_get['id'],
        $webinar_data->ty_calendar_google,
        esc_html__( "Google Calendar Button Copy", 'webinarignition' ),
        "ty_calendar_google",
        esc_html__( "This is the copy for the Google Calendar button...", 'webinarignition' ),
        esc_html__( "e.g. Add To Google Calendar", 'webinarignition' )
    );
    webinarignition_display_field(
        $input_get['id'],
        $webinar_data->ty_calendar_ical,
        esc_html__( "iCal / Outlook Button Copy", 'webinarignition' ),
        "ty_calendar_ical",
        esc_html__( "This is the copy for the outlook / ical button, downloads an ICS file...", 'webinarignition' ),
        esc_html__( "e.g. Add To iCal / Outlook", 'webinarignition' )
    );

    ?>
</div>


<?php
webinarignition_display_edit_toggle(
    "mobile-phone",
    esc_html__( "TXT Reminder Area", 'webinarignition' ),
    "we_edit_ty_twilio",
    esc_html__( "Edit the copy and settings for the TXT reminder area on the thank you page...", 'webinarignition' )
);

?>

<div id="we_edit_ty_twilio" class="we_edit_area">
    <?php WebinarignitionPowerupsShortcodes::show_shortcode_description('ty_sms_reminder', $webinar_data, true, true) ?>
    <?php
    webinarignition_display_option(
        $input_get['id'],
        !empty($webinar_data->txt_area) ? $webinar_data->txt_area : 'off',
        esc_html__( "Toggle TXT Notification", 'webinarignition' ),
        "txt_area",
        esc_html__( "This is wether you want to enable the TXT reminder (w/ Twilio)...", 'webinarignition' ),
        esc_html__( "Show TXT Reminder Area", 'webinarignition' ) . " [on]," . esc_html__( "Hide TXT Reminder Area", 'webinarignition' ) . " [off]"
    );
    ?>
    <div class="txt_area" id="txt_area_on">
        <?php
        webinarignition_display_field(
            $input_get['id'],
            $webinar_data->txt_headline,
            esc_html__( "Reminder TXT Headline", 'webinarignition' ),
            "txt_headline",
            esc_html__( "This is the main headline for the TXT reminder area...", 'webinarignition' ),
            esc_html__( "e.g. Get A SMS Reminder", 'webinarignition' )
        );
        webinarignition_display_field(
            $input_get['id'],
            $webinar_data->txt_placeholder,
            esc_html__( "Phone Number Input Placeholder", 'webinarignition' ),
            "txt_placeholder",
            esc_html__( "This is the placeholder text for the form they enter in their phone number...", 'webinarignition' ),
            esc_html__( "e.g. Enter In Your Mobile Phone Number...", 'webinarignition' )
        );
        webinarignition_display_field(
            $input_get['id'],
            $webinar_data->txt_btn,
            esc_html__( "Remind Button Copy", 'webinarignition' ),
            "txt_btn",
            esc_html__( "This is the copy that is shown on the reminder button...", 'webinarignition' ),
            esc_html__( "e.g. Get Text Message Reminder", 'webinarignition' )
        );
        webinarignition_display_textarea(
            $input_get['id'],
            $webinar_data->txt_reveal,
            esc_html__( "Thank You Copy", 'webinarignition' ),
            "txt_reveal",
            esc_html__( "This is the copy that is shown once they submit their phone number...", 'webinarignition' ),
            esc_html__( "e.g. Thanks! You will get the reminder one hour before the webinar...", 'webinarignition' )
        );
        ?>
    </div>
</div>

<div class="bottomSaveArea">
    <a href="#" class="blue-btn-44 btn saveBTN saveIt" style="color:#FFF;"><i class="icon-save"></i> <?php esc_html_e( "Save & Update", 'webinarignition' ) ?></a>
</div>

</div>