PluginProbe ʕ •ᴥ•ʔ
WP 2FA – Two-factor authentication for WordPress / 4.0.0
WP 2FA – Two-factor authentication for WordPress v4.0.0
4.0.0 1.7.1 2.0.0 2.0.1 2.1.0 2.2.0 2.2.1 2.3.0 2.4.0 2.4.1 2.4.2 2.5.0 2.6.0 2.6.1 2.6.2 2.6.3 2.6.4 2.7.0 2.8.0 2.9.0 2.9.1 2.9.2 2.9.3 3.0.0 3.0.1 3.1.0 3.1.1 3.1.1.2 trunk 1.2.0 1.3.0 1.4.0 1.4.1 1.4.2 1.5.0 1.5.1 1.5.2 1.6.0 1.6.1 1.6.2 1.7.0
wp-2fa / templates / wizard / welcome.php
wp-2fa / templates / wizard Last commit date
backup-codes-display.php 22 hours ago backup-codes-generate.php 22 hours ago backup-method-footer.php 22 hours ago backup-method-selection.php 22 hours ago completion.php 22 hours ago confirm-close.php 22 hours ago email-setup.php 22 hours ago email-verify.php 22 hours ago index.php 22 hours ago method-selection.php 22 hours ago modal.php 22 hours ago required-intro.php 22 hours ago totp-setup.php 22 hours ago totp-verify.php 22 hours ago welcome.php 22 hours ago
welcome.php
29 lines
1 <?php
2 /**
3 * WP 2FA Wizard Template: Welcome Screen
4 *
5 * Template ID: wp2fa-wizard-welcome
6 *
7 * Displayed as the first wizard step when the white-label welcome
8 * message is enabled and not empty.
9 *
10 * Data expected:
11 * - contentHtml {string} The welcome HTML content.
12 * - goBackLabel {string} "Go back" button text.
13 * - continueLabel {string} "Continue" button text.
14 *
15 * @package wp2fa
16 * @since 4.0.0
17 */
18
19 defined( 'ABSPATH' ) || exit;
20 ?>
21 <script type="text/html" id="tmpl-wp2fa-wizard-welcome">
22 <div class="wp2fa-wizard-welcome-content">{{{ data.contentHtml }}}</div>
23 </script>
24
25 <script type="text/html" id="tmpl-wp2fa-wizard-welcome-footer">
26 <button class="wp2fa-wizard-btn wp2fa-wizard-btn-secondary wp-2fa-button-secondary" id="wp2fa-wizard-btn-goback" type="button">{{ data.goBackLabel }}</button>
27 <button class="wp2fa-wizard-btn wp2fa-wizard-btn-primary wp-2fa-button-primary" id="wp2fa-wizard-btn-continue" type="button">{{ data.continueLabel }}</button>
28 </script>
29