Jetpack_IDC::render_error_notice PHP Method

render_error_notice() public method

Will be shown/controlled by jQuery in idc-notice.js
public render_error_notice ( )
    function render_error_notice()
    {
        ?>
		<div class="jp-idc-error__notice dops-notice is-error">
			<svg class="gridicon gridicons-notice dops-notice__icon" height="24" width="24" viewBox="0 0 24 24">
				<g>
					<path d="M12 2C6.477 2 2 6.477 2 12s4.477 10 10 10 10-4.477 10-10S17.523 2 12 2zm1 15h-2v-2h2v2zm0-4h-2l-.5-6h3l-.5 6z"></path>
				</g>
			</svg>
			<div class="dops-notice__content">
				<span class="dops-notice__text">
					<?php 
        esc_html_e('Something went wrong:', 'jetpack');
        ?>
					<span class="jp-idc-error__desc"></span>
				</span>
				<a class="dops-notice__action" href="javascript:void(0);">
					<span id="jp-idc-error__action">
						<?php 
        esc_html_e('Try Again', 'jetpack');
        ?>
					</span>
				</a>
			</div>
		</div>
	<?php 
    }