Skip to content

Commit 78f668f

Browse files
Place "forgot password" after "password" (#7742)
#### Rationale Place "forgot password" after <INPUT password> both visually and in the tab-order. #### Related Pull Requests - <!-- list of links to related pull requests (replace this comment) --> #### Changes - <!-- list of descriptions of changes that are worth noting (replace this comment) --> <!-- list of standard tasks (remove this comment to enable) #### Tasks 📍 - [ ] Claude Code Review - [ ] Manual Testing - [ ] Test Automation - [ ] Verify Fix -->
1 parent dafb688 commit 78f668f

2 files changed

Lines changed: 4 additions & 3 deletions

File tree

core/resources/views/login.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,10 +5,10 @@
55
<label for="email">Email</label>
66
<input id="email" name="email" type="text" class="input-block" autocomplete="off">
77
<label for="password">Password</label>
8+
<input id="password" name="password" type="password" class="input-block" autocomplete="off">
89
<div class="forgot-password-link">
910
<a href="login-resetPassword.view">Forgot password</a>
1011
</div>
11-
<input id="password" name="password" type="password" class="input-block" autocomplete="off">
1212
<input aria-labelledby="remember-label" type="checkbox" name="remember" id="remember" checked >
1313
<span id="remember-label">Remember my email address</span>
1414
<div class="termsOfUseSection" hidden>

core/webapp/login.css

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -82,8 +82,9 @@ ul.sso-list > li {
8282

8383
.forgot-password-link {
8484
text-align: right;
85-
width: 284px;
86-
display: inline-block;
85+
width: 350px;
86+
margin-top: -10px;
87+
margin-bottom: 10px;
8788
}
8889

8990
.signing-in-msg {

0 commit comments

Comments
 (0)