63 lines
2.2 KiB
PHP
Executable File
63 lines
2.2 KiB
PHP
Executable File
<?php
|
|
|
|
if (!defined('ABSPATH')) die('Access denied.');
|
|
|
|
global $current_user;
|
|
$totp_controller = $simba_tfa->get_controller('totp');
|
|
|
|
?>
|
|
<style>
|
|
#icon-tfa-plugin {
|
|
background: transparent url('<?php print esc_url(plugin_dir_url(__FILE__)); ?>img/tfa_admin_icon_32x32.png' ) no-repeat;
|
|
}
|
|
.inside > h3, .normal {
|
|
cursor: default;
|
|
margin-top: 20px;
|
|
}
|
|
</style>
|
|
<div class="wrap">
|
|
|
|
<h2><?php echo esc_html__('Two Factor Authentication', 'all-in-one-wp-security-and-firewall') . ' ' . esc_html__('Settings', 'all-in-one-wp-security-and-firewall'); ?></h2>
|
|
|
|
<?php
|
|
|
|
if (!empty($totp_controller->were_settings_saved())) {
|
|
echo '<div class="updated notice is-dismissible">' . "<p><strong>" . esc_html__('Settings saved.', 'all-in-one-wp-security-and-firewall') . "</strong></p></div>";
|
|
}
|
|
|
|
$simba_tfa->include_template('settings-intro-notices.php');
|
|
|
|
?>
|
|
|
|
<form method="post" action="<?php print esc_url(add_query_arg('settings-updated', 'true', isset($_SERVER['REQUEST_URI']) ? sanitize_url(wp_unslash($_SERVER['REQUEST_URI'])) : '')); ?>">
|
|
|
|
<?php wp_nonce_field('tfa_activate', '_tfa_activate_nonce', false, true); ?>
|
|
|
|
<h2><?php esc_html_e('Activate two factor authentication', 'all-in-one-wp-security-and-firewall'); ?></h2>
|
|
<p>
|
|
<?php
|
|
$utc_date = gmdate('Y-m-d H:i:s');
|
|
$date_now = get_date_from_gmt($utc_date, 'Y-m-d H:i:s');
|
|
/* translators: 1. UTC date. 2. Now date. */
|
|
echo sprintf(esc_html__('N.B. Getting your TFA app/device to generate the correct code depends upon a) you first setting it up by entering or scanning the code below into it, and b) upon your web-server and your TFA app/device agreeing upon the UTC time (within a minute or so). The current UTC time according to the server when this page loaded: %1$s, and in the time-zone you have configured in your WordPress settings: %2$s', 'all-in-one-wp-security-and-firewall'), esc_html($utc_date), esc_html($date_now));
|
|
?>
|
|
</p>
|
|
<p>
|
|
<?php
|
|
$simba_tfa->paint_enable_tfa_radios($current_user->ID);
|
|
?></p>
|
|
<?php submit_button(); ?>
|
|
</form>
|
|
|
|
<?php
|
|
|
|
$totp_controller->current_codes_box();
|
|
|
|
$totp_controller->advanced_settings_box();
|
|
|
|
do_action('simba_tfa_user_settings_after_advanced_settings');
|
|
|
|
?>
|
|
|
|
</div>
|