Fix setup wizard (#5094)

This commit is contained in:
Sukhwinder Dhillon 2023-09-07 13:37:10 +02:00 committed by GitHub
parent 783fe036f1
commit 8739a9da73
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
4 changed files with 8 additions and 4 deletions

View File

@ -153,7 +153,8 @@ class DbResourceForm extends Form
'required' => true,
'renderPassword' => true,
'label' => $this->translate('Password'),
'description' => $this->translate('The password to use for authentication')
'description' => $this->translate('The password to use for authentication'),
'autocomplete' => 'new-password'
)
);
$this->addElement(

View File

@ -224,7 +224,8 @@ class AdminAccountPage extends Form
'label' => $this->translate('Password'),
'description' => $this->translate(
'Enter the password to assign to the newly created account.'
)
),
'autocomplete' => 'new-password'
)
);
$this->addElement(

View File

@ -109,7 +109,8 @@ class DatabaseCreationPage extends Form
array(
'renderPassword' => true,
'label' => $this->translate('Password'),
'description' => $this->translate('The password for the database user defined above')
'description' => $this->translate('The password for the database user defined above'),
'autocomplete' => 'new-password'
)
);

View File

@ -145,6 +145,7 @@
.control-button,
input[type="submit"] {
.button();
justify-content: center;
}
.control-button[disabled] {
@ -160,7 +161,7 @@
}
}
button.finish, a.button-like.login {
button.finish, a.button-link.login {
min-width: 25em;
}