mirror of
https://github.com/YunoHost-Apps/kanboard_ynh.git
synced 2024-09-03 19:36:17 +02:00
15 lines
753 B
PHP
15 lines
753 B
PHP
<div class="page-header">
|
|
<h2><?= t('Two factor authentication') ?></h2>
|
|
</div>
|
|
|
|
<form method="post" action="<?= $this->url->href('twofactor', $user['twofactor_activated'] == 1 ? 'deactivate' : 'show', array('user_id' => $user['id'])) ?>" autocomplete="off">
|
|
<?= $this->form->csrf() ?>
|
|
<p><?= t('Two-Factor Provider: ') ?><strong><?= $this->e($provider) ?></strong></p>
|
|
<div class="form-actions">
|
|
<?php if ($user['twofactor_activated'] == 1): ?>
|
|
<input type="submit" value="<?= t('Disable two-factor authentication') ?>" class="btn btn-red"/>
|
|
<?php else: ?>
|
|
<input type="submit" value="<?= t('Enable two-factor authentication') ?>" class="btn btn-blue"/>
|
|
<?php endif ?>
|
|
</div>
|
|
</form>
|