PluginProbe
Formidable Forms – WordPress Form Builder for Contact Forms, Calculators, Quizzes & More / 5.4.4
Formidable Forms – WordPress Form Builder for Contact Forms, Calculators, Quizzes & More v5.4.4
6.35 6.34 6.33.1 6.33 6.32.1 6.32 6.31 6.25 6.25.1 6.26 6.26.1 6.27 6.28 6.29 6.3 6.3.1 6.3.2 6.30 6.4 6.4.1 6.4.2 6.5 6.5.1 6.5.2 6.5.3 All 141 releases
formidable / classes / views / frm-forms / new-form-overlay / code-from-email.php

code-from-email.php in Formidable Forms – WordPress Form Builder for Contact Forms, Calculators, Quizzes & More 5.4.4, at classes/views/frm-forms/new-form-overlay/code-from-email.php

25 lines 1.3 KB
No matching file
Up and down to move Enter to open Esc to close
Raw Download Zip
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>&nbsp;&nbsp;|&nbsp;&nbsp;</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