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:
committed by
fguillot
parent
dca39a7fb2
commit
050fe904ba
@@ -17,7 +17,7 @@
|
||||
<?= $this->form->text('name', $values, $errors, array('required', 'autofocus', 'tabindex="1"')) ?>
|
||||
|
||||
<?= $this->form->label(t('Email'), 'email') ?>
|
||||
<?= $this->form->email('email', $values, $errors, array('tabindex="2"')) ?>
|
||||
<?= $this->form->email('email', $values, $errors, array('tabindex="2"', 'autocomplete="email"')) ?>
|
||||
<p class="form-help"><?= t('The project email is optional and could be used by several plugins.') ?></p>
|
||||
|
||||
<?= $this->form->label(t('Identifier'), 'identifier') ?>
|
||||
|
||||
Reference in New Issue
Block a user