Add systemd file example
[oweals/peertube.git] / client / app / login / login.component.html
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>