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 |