diff options
author | sowgro <tpoke.ferrari@gmail.com> | 2025-04-07 16:46:53 -0400 |
---|---|---|
committer | sowgro <tpoke.ferrari@gmail.com> | 2025-04-07 16:46:53 -0400 |
commit | bb4e0e55fee7ec8f34c36e6299301d612a0de2ce (patch) | |
tree | 89e0b658d0aba56a0fb15aeb6d1f7c2da67e4e91 /ufund-ui/src/app/components/login/login.component.html | |
parent | ebeafe0a6a70da064fd97359e38f53406a58bed4 (diff) | |
download | JellySolutions-bb4e0e55fee7ec8f34c36e6299301d612a0de2ce.tar.gz JellySolutions-bb4e0e55fee7ec8f34c36e6299301d612a0de2ce.tar.bz2 JellySolutions-bb4e0e55fee7ec8f34c36e6299301d612a0de2ce.zip |
Redo login page
Diffstat (limited to 'ufund-ui/src/app/components/login/login.component.html')
-rw-r--r-- | ufund-ui/src/app/components/login/login.component.html | 9 |
1 files changed, 4 insertions, 5 deletions
diff --git a/ufund-ui/src/app/components/login/login.component.html b/ufund-ui/src/app/components/login/login.component.html index 27eab96..8b8f5b3 100644 --- a/ufund-ui/src/app/components/login/login.component.html +++ b/ufund-ui/src/app/components/login/login.component.html @@ -1,11 +1,10 @@ <div id="box"> - <h1 id="greeting">Login</h1> + <h2 id="greeting">Welcome back,</h2> + <h1>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> + <button type="button" (click)="login(username.value, password.value)">Login</button> + <span>New? <a routerLink="/signup">Create an account.</a></span> </div> <div id="bg-cr"></div> <div id="bg-jf"></div> |