]> git.immae.eu Git - github/Chocobozzz/PeerTube.git/blame - client/angular/users/components/login/login.component.html
Login in Angular : first draft
[github/Chocobozzz/PeerTube.git] / client / angular / users / components / login / login.component.html
CommitLineData
b1794c53
C
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>