Work on Maatma interface

This commit is contained in:
nemunaire 2019-03-13 22:06:35 +01:00 committed by Pierre-Olivier Mercier
commit e965705bfe
6 changed files with 401 additions and 13 deletions

View 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>