Skip to content
Snippets Groups Projects
Commit b6cfadc9 authored by Christian Kuhn's avatar Christian Kuhn Committed by Wouter Wolters
Browse files

[BUGFIX] Install tool css id used twice

css id 't3-install-password' is used twice in 'change install tool password'
and again in 'create administrator', clicking the password label of the admin
section thus sets focus on the 'change install tool password' input field.

Rename css if of the 'create administrator' section.

Change-Id: Iaacd87b5df77cee20593018303e5943df4801d0a
Resolves: #80607
Releases: master
Reviewed-on: https://review.typo3.org/52346


Tested-by: default avatarTYPO3com <no-reply@typo3.com>
Reviewed-by: default avatarStefan Neufeind <typo3.neufeind@speedpartner.de>
Tested-by: default avatarStefan Neufeind <typo3.neufeind@speedpartner.de>
Reviewed-by: default avatarWouter Wolters <typo3@wouterwolters.nl>
Tested-by: default avatarWouter Wolters <typo3@wouterwolters.nl>
parent 66278e21
No related merge requests found
......@@ -6,10 +6,10 @@
<form method="post" class="form-horizontal">
<f:render partial="Action/Common/HiddenFormFields" arguments="{_all}" />
<div class="form-group">
<label for="t3-install-username" class="col-sm-3 control-label">Username:</label>
<label for="t3-install-admin-username" class="col-sm-3 control-label">Username:</label>
<div class="col-sm-9">
<input
id="t3-install-username"
id="t3-install-admin-username"
class="t3-install-form-input-text form-control"
type="text"
name="install[values][newUserUsername]"
......@@ -18,10 +18,10 @@
</div>
</div>
<div class="form-group">
<label for="t3-install-password" class="col-sm-3 control-label">Password:</label>
<label for="t3-install-admin-password" class="col-sm-3 control-label">Password:</label>
<div class="col-sm-9">
<input
id="t3-install-password"
id="t3-install-admin-password"
class="t3-install-form-input-text t3-install-form-password-strength form-control"
type="password"
name="install[values][newUserPassword]"
......@@ -30,10 +30,10 @@
</div>
</div>
<div class="form-group">
<label for="t3-install-password-repeat" class="col-sm-3 control-label">Repeat password:</label>
<label for="t3-install-admin-password-repeat" class="col-sm-3 control-label">Repeat password:</label>
<div class="col-sm-9">
<input
id="t3-install-password-repeat"
id="t3-install-admin-password-repeat"
class="t3-install-form-input-text form-control"
type="password"
name="install[values][newUserPasswordCheck]"
......
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment