diff options
author | Frederic Guillot <fred@kanboard.net> | 2016-01-31 12:15:26 -0500 |
---|---|---|
committer | Frederic Guillot <fred@kanboard.net> | 2016-01-31 12:15:26 -0500 |
commit | 1500ff92b2dc3d3932c8e06755bec23f9017e8a4 (patch) | |
tree | 242f6b24f1786c6db20d9c46ee1c3f661776e5cf /app/Template/user/password.php | |
parent | e81fa0ebd2071cd86011de19435cbac3a9fc61d6 (diff) |
Templates cleanup
Diffstat (limited to 'app/Template/user/password.php')
-rw-r--r-- | app/Template/user/password.php | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/app/Template/user/password.php b/app/Template/user/password.php index 3ef28d33..a24a4ee4 100644 --- a/app/Template/user/password.php +++ b/app/Template/user/password.php @@ -9,17 +9,17 @@ <div class="alert alert-error"> <?= $this->form->label(t('Current password for the user "%s"', $this->user->getFullname()), 'current_password') ?> - <?= $this->form->password('current_password', $values, $errors) ?><br/> + <?= $this->form->password('current_password', $values, $errors) ?> </div> <?= $this->form->label(t('New password for the user "%s"', $this->user->getFullname($user)), 'password') ?> - <?= $this->form->password('password', $values, $errors) ?><br/> + <?= $this->form->password('password', $values, $errors) ?> <?= $this->form->label(t('Confirmation'), 'confirmation') ?> - <?= $this->form->password('confirmation', $values, $errors) ?><br/> + <?= $this->form->password('confirmation', $values, $errors) ?> <div class="form-actions"> - <input type="submit" value="<?= t('Save') ?>" class="btn btn-blue"/> + <input type="submit" value="<?= t('Save') ?>" class="btn btn-blue"> <?= t('or') ?> <?= $this->url->link(t('cancel'), 'user', 'show', array('user_id' => $user['id'])) ?> </div> |