Advertisement
Guest User

Untitled

a guest
Mar 3rd, 2015
224
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.93 KB | None | 0 0
  1. <form name = "signupform">
  2. <label>{{label.password}}</label>
  3. <input type="password" class="form-control" id="pw1" name="pw1" ng-model="user.password" required ></input>
  4.  
  5. <label>{{label.retypePassword}}</label>
  6. <input type="password" class="form-control" id="pw2" name="pw2" ng-model="pw2" ng-required="" pw-check="pw1"></input>
  7.  
  8. <label>{{label.email}}</label>
  9. <input type="email" id = "email" name = "email" ng-model="user.email" class="form-control" ></input>
  10. <div class = "msg-block" ng-show = "signupform.email.$error">
  11. <img src = "./images/error-icon.png" width = "25" height = "25" ng-show="signupform.email.$error.email">
  12. <span ng-show="signupform.email.$error.email && signupform.email.$dirty">Entered email is not valid</span>
  13. </div>
  14. </form>
  15.  
  16. <button type="button" class="btn btn-primary" ng-click=" checkuserexist(); ng-disabled="!signupform.$valid" data-dismiss="modal">Save changes</button>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement