aboutsummaryrefslogtreecommitdiff
path: root/ufund-ui/src/app/components/login/login.component.html
blob: aff108fca80a15d0ef758729995ce6578ca8f46f (plain) (blame)
1
2
3
4
5
6
7
8
9
<div id="box">
    <span *ngIf="next" style="color: red">You must be logged in to view this page</span>
    <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" (click)="signup(username.value, password.value)">Create Account</button>
    <span *ngIf="statusText">{{statusText | async}}</span>
</div>