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