Jetpack_IDC::render_notice_second_step PHP Метод

render_notice_second_step() публичный Метод

    function render_notice_second_step()
    {
        ?>
		<div class="jp-idc-notice__second-step">
			<div class="jp-idc-notice__content-header">
				<h3 class="jp-idc-notice__content-header__lead">
					<?php 
        echo $this->get_second_step_header_lead();
        ?>
				</h3>
			</div>

			<?php 
        $this->render_error_notice();
        ?>

			<div class="jp-idc-notice__actions">
				<div class="jp-idc-notice__action">
					<p class="jp-idc-notice__action__explanation">
						<?php 
        echo $this->get_migrate_site_action_explanation();
        ?>
					</p>
					<button id="jp-idc-migrate-action" class="dops-button">
						<?php 
        echo $this->get_migrate_site_button_text();
        ?>
					</button>
				</div>

				<div class="jp-idc-notice__action">
					<p class="jp-idc-notice__action__explanation">
						<?php 
        echo $this->get_start_fresh_action_explanation();
        ?>
					</p>
					<button id="jp-idc-reconnect-site-action" class="dops-button">
						<?php 
        echo $this->get_start_fresh_button_text();
        ?>
					</button>
				</div>

			</div>

			<p class="jp-idc-notice__unsure-prompt">
				<?php 
        echo $this->get_unsure_prompt();
        ?>
			</p>
		</div>
	<?php 
    }