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,
|
'required' => true,
|
||||||
'renderPassword' => true,
|
'renderPassword' => true,
|
||||||
'label' => $this->translate('Password'),
|
'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(
|
$this->addElement(
|
||||||
|
@ -224,7 +224,8 @@ class AdminAccountPage extends Form
|
|||||||
'label' => $this->translate('Password'),
|
'label' => $this->translate('Password'),
|
||||||
'description' => $this->translate(
|
'description' => $this->translate(
|
||||||
'Enter the password to assign to the newly created account.'
|
'Enter the password to assign to the newly created account.'
|
||||||
)
|
),
|
||||||
|
'autocomplete' => 'new-password'
|
||||||
)
|
)
|
||||||
);
|
);
|
||||||
$this->addElement(
|
$this->addElement(
|
||||||
|
@ -109,7 +109,8 @@ class DatabaseCreationPage extends Form
|
|||||||
array(
|
array(
|
||||||
'renderPassword' => true,
|
'renderPassword' => true,
|
||||||
'label' => $this->translate('Password'),
|
'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,
|
.control-button,
|
||||||
input[type="submit"] {
|
input[type="submit"] {
|
||||||
.button();
|
.button();
|
||||||
|
justify-content: center;
|
||||||
}
|
}
|
||||||
|
|
||||||
.control-button[disabled] {
|
.control-button[disabled] {
|
||||||
@ -160,7 +161,7 @@
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
button.finish, a.button-like.login {
|
button.finish, a.button-link.login {
|
||||||
min-width: 25em;
|
min-width: 25em;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user