mirror of
https://github.com/Icinga/icingaweb2.git
synced 2025-07-31 01:34:09 +02:00
Fix setup wizard (#5094)
This commit is contained in:
parent
783fe036f1
commit
8739a9da73
@ -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(
|
||||
|
@ -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(
|
||||
|
@ -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'
|
||||
)
|
||||
);
|
||||
|
||||
|
@ -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;
|
||||
}
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user