blob: 94069451596227eddb29742eeaba619db72e9ac5 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
<h3>Login</h3>
<form role="form" (submit)="login(username.value, password.value)">
<div class="form-group">
<label for="username">Username</label>
<input type="text" #username class="form-control" id="username" placeholder="Username">
</div>
<div class="form-group">
<label for="password">Password</label>
<input type="password" #password class="form-control" id="password" placeholder="Password">
</div>
<input type="submit" value="Login" class="btn btn-default">
</form>
|