summaryrefslogtreecommitdiff
path: root/client/partials
diff options
context:
space:
mode:
authormanzerbredes <loic.guegan_secondary@yahoo.fr>2016-02-04 13:20:45 +0100
committermanzerbredes <loic.guegan_secondary@yahoo.fr>2016-02-04 13:20:45 +0100
commit784b25754c6b168a6c015aa39837c34339c88444 (patch)
tree59ee5a028dcf5dcd194fd9618f26a0fd7ef7ae4f /client/partials
parent37e02d62c49590cb936f7b8722d013529c5b9728 (diff)
Add error checking, add method handler for login
Diffstat (limited to 'client/partials')
-rw-r--r--client/partials/login.html12
1 files changed, 6 insertions, 6 deletions
diff --git a/client/partials/login.html b/client/partials/login.html
index 387b075..aa974ab 100644
--- a/client/partials/login.html
+++ b/client/partials/login.html
@@ -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>