Add autocomplete attribute to HTML forms

Add autocomplete for email, name, username, current-password, new-password and one-time-code fields.
This commit is contained in:
Frédéric Guillot
2020-12-23 11:20:00 -08:00
committed by fguillot
parent dca39a7fb2
commit 050fe904ba
10 changed files with 28 additions and 28 deletions

View File

@@ -2,16 +2,16 @@
<h2><?= t('Password modification') ?></h2>
</div>
<form method="post" action="<?= $this->url->href('UserCredentialController', 'savePassword', array('user_id' => $user['id'])) ?>" autocomplete="off">
<form method="post" action="<?= $this->url->href('UserCredentialController', 'savePassword', array('user_id' => $user['id'])) ?>">
<?= $this->form->hidden('id', $values) ?>
<?= $this->form->csrf() ?>
<fieldset>
<?= $this->form->label(t('Current password for the user "%s"', $this->user->getFullname()), 'current_password') ?>
<?= $this->form->password('current_password', $values, $errors, array('autofocus')) ?>
<?= $this->form->password('current_password', $values, $errors, array('autofocus', 'autocomplete="current-password"')) ?>
<?= $this->form->label(t('New password for the user "%s"', $this->user->getFullname($user)), 'password') ?>
<?= $this->form->password('password', $values, $errors) ?>
<?= $this->form->password('password', $values, $errors, ['autocomplete="new-password"']) ?>
<?= $this->form->label(t('Confirmation'), 'confirmation') ?>
<?= $this->form->password('confirmation', $values, $errors) ?>