aboutsummaryrefslogtreecommitdiff
path: root/ufund-ui/src/app/components/login/login.component.html
blob: e1c3e2a18790e9663dbc52f35f0d65c0af308705 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
<div id="box">
    <h1>Login</h1>
    <input placeholder="Username" type="text" #username>
    <input placeholder="Password" type="password" #password>
    <button type="button" (click)="login(username.value, password.value)">Login</button>
    <div>
        New? <a routerLink="/signup">Create an account</a>
    </div>
    <span *ngIf="statusText">{{statusText | async}}</span>
</div>