Add error checking, add method handler for login

This commit is contained in:
manzerbredes 2016-02-04 13:20:45 +01:00
parent 37e02d62c4
commit 784b25754c
5 changed files with 53 additions and 31 deletions

View file

@ -12,18 +12,18 @@
<div class="modal-body">
<div class="form-group">
<label label-default="" for="inputUser">User</label>
<input class="form-control" id="inputUser"
<label label-default="" for="loginFormUsername">User</label>
<input class="form-control" id="loginFormUsername"
placeholder="Email" type="text" ng-model="identityFormData.user">
</div>
<div class="form-group">
<label label-default="" for="inputProject">Project</label>
<input class="form-control" id="inputProject"
<label label-default="" for="loginFormProjectname">Project</label>
<input class="form-control" id="loginFormProjectname"
placeholder="Project Name" type="password" ng-model="identityFormData.project">
</div>
<div class="form-group">
<label label-default="" for="inputPassword">Password</label>
<input class="form-control" id="inputPassword"
<label label-default="" for="loginFormPassword">Password</label>
<input class="form-control" id="loginFormPassword"
placeholder="Password" type="password" ng-model="identityFormData.password">
</div>