diff options
Diffstat (limited to 'app/Template/twofactor')
-rw-r--r-- | app/Template/twofactor/check.php | 8 | ||||
-rw-r--r-- | app/Template/twofactor/disable.php | 4 | ||||
-rw-r--r-- | app/Template/twofactor/index.php | 14 |
3 files changed, 13 insertions, 13 deletions
diff --git a/app/Template/twofactor/check.php b/app/Template/twofactor/check.php index c29c0129..0e29d526 100644 --- a/app/Template/twofactor/check.php +++ b/app/Template/twofactor/check.php @@ -1,8 +1,8 @@ -<form method="post" action="<?= $this->u('twofactor', 'check', array('user_id' => $this->userSession->getId())) ?>" autocomplete="off"> +<form method="post" action="<?= $this->url->href('twofactor', 'check', array('user_id' => $this->userSession->getId())) ?>" autocomplete="off"> - <?= $this->formCsrf() ?> - <?= $this->formLabel(t('Code'), 'code') ?> - <?= $this->formText('code', array(), array(), array('placeholder="123456"', 'autofocus'), 'form-numeric') ?> + <?= $this->form->csrf() ?> + <?= $this->form->label(t('Code'), 'code') ?> + <?= $this->form->text('code', array(), array(), array('placeholder="123456"', 'autofocus'), 'form-numeric') ?> <div class="form-actions"> <input type="submit" value="<?= t('Check my code') ?>" class="btn btn-blue"/> diff --git a/app/Template/twofactor/disable.php b/app/Template/twofactor/disable.php index 6909b446..36be4ef9 100644 --- a/app/Template/twofactor/disable.php +++ b/app/Template/twofactor/disable.php @@ -8,7 +8,7 @@ </p> <div class="form-actions"> - <?= $this->a(t('Yes'), 'twofactor', 'disable', array('user_id' => $user['id'], 'disable' => 'yes'), true, 'btn btn-red') ?> - <?= t('or') ?> <?= $this->a(t('cancel'), 'user', 'show', array('user_id' => $user['id'])) ?> + <?= $this->url->link(t('Yes'), 'twofactor', 'disable', array('user_id' => $user['id'], 'disable' => 'yes'), true, 'btn btn-red') ?> + <?= t('or') ?> <?= $this->url->link(t('cancel'), 'user', 'show', array('user_id' => $user['id'])) ?> </div> </div>
\ No newline at end of file diff --git a/app/Template/twofactor/index.php b/app/Template/twofactor/index.php index 28e93f14..36b92653 100644 --- a/app/Template/twofactor/index.php +++ b/app/Template/twofactor/index.php @@ -2,10 +2,10 @@ <h2><?= t('Two factor authentication') ?></h2> </div> -<form method="post" action="<?= $this->u('twofactor', 'save', array('user_id' => $user['id'])) ?>" autocomplete="off"> +<form method="post" action="<?= $this->url->href('twofactor', 'save', array('user_id' => $user['id'])) ?>" autocomplete="off"> - <?= $this->formCsrf() ?> - <?= $this->formCheckbox('twofactor_activated', t('Enable/disable two factor authentication'), 1, isset($user['twofactor_activated']) && $user['twofactor_activated'] == 1) ?> + <?= $this->form->csrf() ?> + <?= $this->form->checkbox('twofactor_activated', t('Enable/disable two factor authentication'), 1, isset($user['twofactor_activated']) && $user['twofactor_activated'] == 1) ?> <div class="form-actions"> <input type="submit" value="<?= t('Save') ?>" class="btn btn-blue"/> @@ -24,11 +24,11 @@ </div> <h3><?= t('Test your device') ?></h3> -<form method="post" action="<?= $this->u('twofactor', 'test', array('user_id' => $user['id'])) ?>" autocomplete="off"> +<form method="post" action="<?= $this->url->href('twofactor', 'test', array('user_id' => $user['id'])) ?>" autocomplete="off"> - <?= $this->formCsrf() ?> - <?= $this->formLabel(t('Code'), 'code') ?> - <?= $this->formText('code', array(), array(), array('placeholder="123456"'), 'form-numeric') ?> + <?= $this->form->csrf() ?> + <?= $this->form->label(t('Code'), 'code') ?> + <?= $this->form->text('code', array(), array(), array('placeholder="123456"'), 'form-numeric') ?> <div class="form-actions"> <input type="submit" value="<?= t('Check my code') ?>" class="btn btn-blue"/> |