aboutsummaryrefslogtreecommitdiff
path: root/ufund-ui/src/app/components/login/login.component.html
blob: bfd7f5e61f50f5c44176ccd6b05cc177c664f7e6 (plain) (blame)
1
2
3
4
5
6
<div *ngIf="next" style="color: red">You must be logged in to view this page</div>
<p>Login:</p>
<input placeholder="Username" type="text" #username>
<input placeholder="Password" type="password" #password>
<button type="button" (click)="login(username.value, password.value)">Login</button>
<button type="button">Create Account...</button>