Commit 84de792c36bad53138f57e16b25b2f85191035ec
1 parent
813cab6f94
Exists in
master
and in
1 other branch
testing... nothing worth noting
Showing 2 changed files with 13 additions and 6 deletions Side-by-side Diff
scripts/LoginController.js
View file @
84de792
templates/login_form.html
View file @
84de792
... | ... | @@ -21,8 +21,9 @@ |
21 | 21 | <div class="tab-content" id="registration_forms"> |
22 | 22 | <!-- SIGN UP FORM --> |
23 | 23 | <div class="tab-pane active myform" id="tab1"> |
24 | - <form class="login_input_form"> | |
25 | - <div class="form-group"> | |
24 | + <form name="register_form_input"> | |
25 | + <img ng-src="http://i.imgur.com/vkW3Lhe.jpg" ng-show="register_form_input.$dirty" /> | |
26 | + <div class="form-group"> | |
26 | 27 | <input name="email" type="email" class="form-control" ng-model="signUpEmail" placeholder="Email" required /> |
27 | 28 | </div> |
28 | 29 | <div class="check-element animate-show" role="alert" ng-show="signUpEmail.$dirty && emailError"> |
29 | 30 | |
... | ... | @@ -38,10 +39,10 @@ |
38 | 39 | |
39 | 40 | <!-- LOGIN FORM --> |
40 | 41 | <div class="tab-pane myform" id="tab2"> |
41 | - <form class="login_input_form"> | |
42 | + <form name="login_form_input"> | |
42 | 43 | <div class="check-element animate-show" role="alert" ng-show="loginEmail.$dirty && loginError"> |
43 | 44 | <span class="glyphicon glyphicon-exclamation-sign" aria-hidden="true"></span> |
44 | - <span style="color:#8E2323">Invalid username or password!</span> | |
45 | + <span style="color:#8E2323">Invalid username or password!!</span> | |
45 | 46 | </div> |
46 | 47 | <div class="form-group"> |
47 | 48 | <input type="email" class="form-control" ng-model="loginEmail" placeholder="Email" value="fe" /> |
48 | 49 | |
... | ... | @@ -56,8 +57,13 @@ |
56 | 57 | |
57 | 58 | <!-- FORGOT PASS --> |
58 | 59 | <div class="disclaimer"> |
59 | - <a class="trigger-password-reset" ng-click="triggerPasswordReset" href="#">I forgot my password</a> | |
60 | + <a class="trigger-password-reset" ng-click="triggerPasswordReset" href="#">forget ur password???</a> | |
60 | 61 | </div> |
62 | + | |
63 | + <form class="test_ngshow" name="myForm"> | |
64 | + <input type="email" name="email" id="email" ng-model="wot" required /> | |
65 | + <img ng-src="http://i.imgur.com/vkW3Lhe.jpg" ng-show="myForm.$dirty" /> | |
66 | + </form> | |
61 | 67 | </div> |
62 | 68 | |
63 | 69 |