62 lines
2.0 KiB
PHP
62 lines
2.0 KiB
PHP
<?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 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 __('Two Factor Authentication', 'all-in-one-wp-security-and-firewall').' '.__('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>".__('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', $_SERVER['REQUEST_URI'])); ?>">
|
|
|
|
<?php wp_nonce_field('tfa_activate', '_tfa_activate_nonce', false, true); ?>
|
|
|
|
<h2><?php _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');
|
|
echo sprintf(__('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: %s, and in the time-zone you have configured in your WordPress settings: %s', 'all-in-one-wp-security-and-firewall'), htmlspecialchars($utc_date), htmlspecialchars($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>
|