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 / completion.php
wp-2fa / templates / wizard Last commit date
backup-codes-display.php 17 hours ago backup-codes-generate.php 17 hours ago backup-method-footer.php 17 hours ago backup-method-selection.php 17 hours ago completion.php 17 hours ago confirm-close.php 17 hours ago email-setup.php 17 hours ago email-verify.php 17 hours ago index.php 17 hours ago method-selection.php 17 hours ago modal.php 17 hours ago required-intro.php 17 hours ago totp-setup.php 17 hours ago totp-verify.php 17 hours ago welcome.php 17 hours ago
completion.php
39 lines
1 <?php
2 /**
3 * WP 2FA Wizard Template: Completion Step
4 *
5 * Shown at the end of the wizard when no backup methods are available.
6 * Displays a congratulatory message from the white-label settings and
7 * a close button.
8 *
9 * Template IDs:
10 * - wp2fa-wizard-completion — Body content.
11 * - wp2fa-wizard-completion-footer — Footer with close button.
12 *
13 * tmpl-wp2fa-wizard-completion data:
14 * - contentHtml {string} The "no further action" HTML content.
15 *
16 * tmpl-wp2fa-wizard-completion-footer data:
17 * - closeLabel {string} "Close wizard" button text.
18 *
19 * @package wp2fa
20 * @since 4.0.0
21 */
22
23 defined( 'ABSPATH' ) || exit;
24 ?>
25 <script type="text/html" id="tmpl-wp2fa-wizard-completion">
26 <div class="wp2fa-wizard-success-icon" aria-hidden="true">
27 <svg width="48" height="48" viewBox="0 0 48 48" fill="none" xmlns="http://www.w3.org/2000/svg">
28 <circle cx="24" cy="24" r="24" fill="#edfaef"/>
29 <circle cx="24" cy="24" r="18" fill="#d4edda"/>
30 <path d="M16 24l6 6 10-12" stroke="#2e7d32" stroke-width="3" stroke-linecap="round" stroke-linejoin="round" fill="none"/>
31 </svg>
32 </div>
33 <div class="wp2fa-wizard-completion-content">{{{ data.contentHtml }}}</div>
34 </script>
35
36 <script type="text/html" id="tmpl-wp2fa-wizard-completion-footer">
37 <button class="wp2fa-wizard-btn wp2fa-wizard-btn-primary wp-2fa-button-primary" id="wp2fa-wizard-btn-completion-close" type="button">{{ data.closeLabel }}</button>
38 </script>
39