blob: a6441f49f89a8215f8e848cca5f9d857081f5b61 (
plain) (
blame)
1
2
3
4
5
6
7
|
<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" routerLink="/signup">Create Account...</button>
<span *ngIf="statusText">{{statusText | async}}</span>
|