blob: 1017d0f6054374eab9d3f6358009a0294feb0f44 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
  | 
<div id="box">
    <h1>Login</h1>
    <input placeholder="Username" type="text" #username (keydown.enter)="login(username.value, password.value)">
    <input placeholder="Password" type="password" #password (keydown.enter)="login(username.value, password.value)">
    <button type="button" (click)="login(username.value, password.value)">Login</button>
    <div>
        New? <a routerLink="/signup">Create an account</a>
    </div>
</div>
 
  |