Skip to content

Commit

Permalink
Fix forgot password
Browse files Browse the repository at this point in the history
  • Loading branch information
Got17 committed Oct 24, 2024
1 parent 53a89bf commit 254c1b8
Show file tree
Hide file tree
Showing 2 changed files with 13 additions and 2 deletions.
4 changes: 3 additions & 1 deletion FingerAuth/wwwroot/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,9 @@
<label for="password" class="text">Password</label>
</div>

<a href="#" class="forgot-password text">Forgot password?</a>
<div class="forgot-container">
<a href="#" class="forgot-password text">Forgot password?</a>
</div>

<button type="submit" class="login-button text">Login</button>

Expand Down
11 changes: 10 additions & 1 deletion FingerAuth/wwwroot/styles.css
Original file line number Diff line number Diff line change
Expand Up @@ -95,11 +95,16 @@ form {
line-height: 57px;
}

.forgot-container {
width: 100%;
display:flex;
justify-content: right;
}

.forgot-password {
font-size: 14px;
color: #666;
text-align: right;
width: 100%;
margin-bottom: 20px;
text-decoration: none;
}
Expand All @@ -122,6 +127,10 @@ form {
font-weight: 500;
}

.authenticate-button {
opacity: 0.75;
}

.signup-link {
margin-top: 30px;
}
Expand Down

0 comments on commit 254c1b8

Please sign in to comment.