blob: 178ddbf6075b39a0d42879b9eb649edf83cd17b5 (
plain) (
blame)
1
2
3
4
5
|
<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>
|