| 1 |
<?php |
| 2 |
if ( ! defined( 'ABSPATH' ) ) { |
| 3 |
die( 'You are not allowed to call this page directly.' ); |
| 4 |
} |
| 5 |
?> |
| 6 |
<div class="frmcenter"> |
| 7 |
<img src="<?php echo esc_url( FrmAppHelper::plugin_url() . '/images/leave-email.svg' ); ?>" /> |
| 8 |
<h3><?php esc_html_e( 'Check your inbox', 'formidable' ); ?></h3> |
| 9 |
<p><?php esc_html_e( 'Enter code that we\'ve sent to your email address', 'formidable' ); ?></p> |
| 10 |
<div style="position: relative; width: 600px; margin: 0 auto;"> |
| 11 |
<input id="frm_code_from_email" type="text" placeholder="<?php esc_attr_e( 'Code from email', 'formidable' ); ?>" /> |
| 12 |
<span id="frm_code_from_email_error" class="frm_hidden" style="position: absolute; right: 71px; top: 9px; color: #973937;"> |
| 13 |
<span frm-error="custom"></span> |
| 14 |
<span frm-error="wrong-code"><?php esc_html_e( 'Verification code is wrong', 'formidable' ); ?></span> |
| 15 |
<span frm-error="empty"><?php esc_html_e( 'Verification code is empty', 'formidable' ); ?></span> |
| 16 |
</span> |
| 17 |
</div> |
| 18 |
<div id="frm_code_from_email_options" class="frm_hidden"> |
| 19 |
<a href="#" id="frm-change-email-address"><?php esc_html_e( 'Change email address', 'formidable' ); ?></a> |
| 20 |
<span> | </span> |
| 21 |
<a href="#" id="frm-resend-code"><?php esc_html_e( 'Resend code', 'formidable' ); ?></a> |
| 22 |
</div> |
| 23 |
<div style="height: 30px;"></div> |
| 24 |
</div> |
| 25 |
|