From 254c1b8225b1c81380c96783a3162b7cc93670ac Mon Sep 17 00:00:00 2001 From: Souvanxay LUANGSOUVANNAVONG Date: Thu, 24 Oct 2024 13:56:04 +0200 Subject: [PATCH] Fix forgot password --- FingerAuth/wwwroot/index.html | 4 +++- FingerAuth/wwwroot/styles.css | 11 ++++++++++- 2 files changed, 13 insertions(+), 2 deletions(-) diff --git a/FingerAuth/wwwroot/index.html b/FingerAuth/wwwroot/index.html index 4aec9b3..d21b591 100644 --- a/FingerAuth/wwwroot/index.html +++ b/FingerAuth/wwwroot/index.html @@ -35,7 +35,9 @@ - Forgot password? +
+ Forgot password? +
diff --git a/FingerAuth/wwwroot/styles.css b/FingerAuth/wwwroot/styles.css index 107b92f..49a6822 100644 --- a/FingerAuth/wwwroot/styles.css +++ b/FingerAuth/wwwroot/styles.css @@ -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; } @@ -122,6 +127,10 @@ form { font-weight: 500; } +.authenticate-button { + opacity: 0.75; +} + .signup-link { margin-top: 30px; }