blob: e04ec2317e560a309c182dccc3a166ee4f0c802c (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
|
<div id="box">
<span *ngIf="next" style="color: red">You must be logged in to view this page</span>
<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 href="/">Create an account</a>
</div>
<!-- <button type="button" (click)="signup(username.value, password.value)">Create Account</button>-->
<span *ngIf="statusText">{{statusText | async}}</span>
</div>
|