Work on Maatma interface
This commit is contained in:
parent
9cb1ad6e97
commit
e965705bfe
6 changed files with 401 additions and 13 deletions
16
token-validator/htdocs/views/auth.html
Normal file
16
token-validator/htdocs/views/auth.html
Normal file
|
|
@ -0,0 +1,16 @@
|
|||
<h2>Accès à votre compte</h2>
|
||||
|
||||
<form ng-submit="logmein()">
|
||||
<div class="form-group">
|
||||
<label for="login">CRI login</label>
|
||||
<input class="form-control" id="login" ng-model="auth.username" placeholder="Entrer votre login" autofocus>
|
||||
</div>
|
||||
<div class="form-group">
|
||||
<label for="password">Mot de passe</label>
|
||||
<input type="password" class="form-control" id="password" ng-model="auth.password" placeholder="Mot de passe">
|
||||
</div>
|
||||
<button type="submit" class="btn btn-primary">
|
||||
<span class="spinner-border spinner-border-sm" role="status" aria-hidden="true" ng-show="pleaseWait"></span>
|
||||
Me connecter
|
||||
</button>
|
||||
</form>
|
||||
Reference in a new issue