password.html 1.0 KB

1234567891011121314151617181920212223242526272829303132
  1. <navbar icon="icon-gf icon-gf-users" title="Profile" title-url="profile">
  2. </navbar>
  3. <div class="page-container">
  4. <div class="page-header">
  5. <h1>Change password</h1>
  6. </div>
  7. <form name="userForm" class="gf-form-group">
  8. <div class="gf-form">
  9. <span class="gf-form-label width-10">Old Password</span>
  10. <input class="gf-form-input max-width-21" type="text" required ng-model="command.oldPassword">
  11. </div>
  12. <div class="gf-form">
  13. <span class="gf-form-label width-10">New Password</span>
  14. <input class="gf-form-input max-width-21" type="text" required ng-minlength="4" ng-model="command.newPassword">
  15. </div>
  16. <div class="gf-form">
  17. <span class="gf-form-label width-10">Confirm Password</span>
  18. <input class="gf-form-input max-width-21" type="text" required ng-minlength="4" ng-model="command.confirmNew">
  19. </div>
  20. <div class="gf-form-button-row">
  21. <button type="submit" class="btn btn-success" ng-click="changePassword()">Change Password</button>
  22. <a class="btn-text" href="profile">Cancel</a>
  23. </div>
  24. </form>
  25. </div>