diff options
Diffstat (limited to 'ufund-ui/src/app/components/login/login.component.html')
-rw-r--r-- | ufund-ui/src/app/components/login/login.component.html | 15 |
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> + |