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

@@ -12,10 +12,10 @@
<?= $this->form->csrf() ?>
<?= $this->form->label(t('Username'), 'username') ?>
<?= $this->form->text('username', $values, $errors, array('autofocus', 'required')) ?>
<?= $this->form->text('username', $values, $errors, array('autofocus', 'required', 'autocomplete="username"')) ?>
<?= $this->form->label(t('Password'), 'password') ?>
<?= $this->form->password('password', $values, $errors, array('required')) ?>
<?= $this->form->password('password', $values, $errors, array('required', 'autocomplete="current-password"')) ?>
<?php if (isset($captcha) && $captcha): ?>
<?= $this->form->label(t('Enter the text below'), 'captcha') ?>