diff options
Diffstat (limited to 'client/app/login/login.component.html')
-rw-r--r-- | client/app/login/login.component.html | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/client/app/login/login.component.html b/client/app/login/login.component.html new file mode 100644 index 000000000..940694515 --- /dev/null +++ b/client/app/login/login.component.html | |||
@@ -0,0 +1,14 @@ | |||
1 | <h3>Login</h3> | ||
2 | <form role="form" (submit)="login(username.value, password.value)"> | ||
3 | <div class="form-group"> | ||
4 | <label for="username">Username</label> | ||
5 | <input type="text" #username class="form-control" id="username" placeholder="Username"> | ||
6 | </div> | ||
7 | |||
8 | <div class="form-group"> | ||
9 | <label for="password">Password</label> | ||
10 | <input type="password" #password class="form-control" id="password" placeholder="Password"> | ||
11 | </div> | ||
12 | |||
13 | <input type="submit" value="Login" class="btn btn-default"> | ||
14 | </form> | ||