aboutsummaryrefslogtreecommitdiff
path: root/ufund-ui/src/app/components/login/login.component.html
diff options
context:
space:
mode:
authorAkash Keshav <112591754+domesticchores@users.noreply.github.com>2025-04-04 20:49:15 -0400
committerAkash Keshav <112591754+domesticchores@users.noreply.github.com>2025-04-04 20:49:15 -0400
commitac6fa949a754778f268fb91f0b32464c153191ef (patch)
treefc37f83d5e8f74ca91676c436371469f60e5689c /ufund-ui/src/app/components/login/login.component.html
parentb4a9cd9d540d42a61bee9045d41ada392305a8d5 (diff)
downloadJellySolutions-ac6fa949a754778f268fb91f0b32464c153191ef.tar.gz
JellySolutions-ac6fa949a754778f268fb91f0b32464c153191ef.tar.bz2
JellySolutions-ac6fa949a754778f268fb91f0b32464c153191ef.zip
refactor login-page and need-list to support light/dark mode
Diffstat (limited to 'ufund-ui/src/app/components/login/login.component.html')
-rw-r--r--ufund-ui/src/app/components/login/login.component.html15
1 files changed, 9 insertions, 6 deletions
diff --git a/ufund-ui/src/app/components/login/login.component.html b/ufund-ui/src/app/components/login/login.component.html
index 1017d0f..27eab96 100644
--- a/ufund-ui/src/app/components/login/login.component.html
+++ b/ufund-ui/src/app/components/login/login.component.html
@@ -1,9 +1,12 @@
<div id="box">
- <h1>Login</h1>
- <input placeholder="Username" type="text" #username (keydown.enter)="login(username.value, password.value)">
- <input placeholder="Password" type="password" #password (keydown.enter)="login(username.value, password.value)">
- <button type="button" (click)="login(username.value, password.value)">Login</button>
- <div>
- New? <a routerLink="/signup">Create an account</a>
+ <h1 id="greeting">Login</h1>
+ <input class="form-input" placeholder="Username" type="text" #username (keydown.enter)="login(username.value, password.value)">
+ <input class="form-input" placeholder="Password" type="password" #password (keydown.enter)="login(username.value, password.value)">
+ <button class="form-submit" type="button" (click)="login(username.value, password.value)">Login</button>
+ <div style="display: flex; column-gap: 4px;">
+ <p>New?</p> <a routerLink="/signup"><p id="signup">Create an account.</p></a>
</div>
</div>
+<div id="bg-cr"></div>
+<div id="bg-jf"></div>
+