aboutsummaryrefslogtreecommitdiff
path: root/ufund-ui/src/app/components/login/login.component.html
diff options
context:
space:
mode:
Diffstat (limited to 'ufund-ui/src/app/components/login/login.component.html')
-rw-r--r--ufund-ui/src/app/components/login/login.component.html9
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>