aboutsummaryrefslogtreecommitdiff
path: root/ufund-ui/src/app/components/login/login.component.html
blob: 8b8f5b38402898a6f275a7141f5c48747dd80d7c (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
<div id="box">
    <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 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>