mirror of
https://github.com/BoostIo/Boostnote
synced 2026-02-16 01:10:43 +00:00
19 lines
661 B
HTML
19 lines
661 B
HTML
<form ng-submit="vm.signIn()">
|
|
<p ng-if="vm.authFailed" class="alert alert-danger">
|
|
Incorrect email or password entered. Please try again.
|
|
</p>
|
|
<div class="form-group">
|
|
<label for="email">E-mail</label>
|
|
<input ng-model="vm.email" type="text" id="email" name="name" class="form-control" placeholder="E-mail">
|
|
</div>
|
|
|
|
<div class="form-group">
|
|
<label for="password">Password</label>
|
|
<input ng-model="vm.password" type="password" id="password" name="name" class="form-control" placeholder="Password">
|
|
</div>
|
|
|
|
<div class="form-group">
|
|
<button type="submit" class="btn btn-primary form-control">Sign In</button>
|
|
</div>
|
|
</form>
|