We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 50d695c + 4085a5a commit 43078c3Copy full SHA for 43078c3
inc/Ui/Login.php
@@ -53,10 +53,12 @@ public function show()
53
$input = $form->addTextInput('u', $lang['user'])->id('focus__this')->addClass('edit')
54
->val(($INPUT->bool('http_credentials')) ? '' : $INPUT->str('u'));
55
$input->getLabel()->attr('class', 'block');
56
+ $input->attr('autocomplete', 'username');
57
$form->addHTML("<br>\n");
58
59
$input = $form->addPasswordInput('p', $lang['pass'])->addClass('block edit');
60
61
+ $input->attr('autocomplete', 'current-password');
62
63
64
if ($conf['rememberme']) {
0 commit comments