

YouAndWeb_TwoToc
a98e8d4c8be3c9266abcdd007f47a6b1c3ed9599
YouAndWeb_TwoToc / client / app / account / settings / settings.html
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 |
<navbar></navbar> <div class="container"> <div class="row bg-grey"> <div class="col-sm-12"> <h1>Change Password</h1> </div> <div class="col-sm-12"> <form class="form" name="form" ng-submit="changePassword(form)" novalidate> <div class="form-group"> <label>Current Password</label> <input type="password" name="password" class="form-control" ng-model="user.oldPassword" mongoose-error/> <p class="help-block" ng-show="form.password.$error.mongoose"> <br> {{ errors.other }} </p> </div> <div class="form-group"> <label>New Password</label> <input type="password" name="newPassword" class="form-control" ng-model="user.newPassword" ng-minlength="3" required/> <p class="help-block" ng-show="(form.newPassword.$error.minlength || form.newPassword.$error.required) && (form.newPassword.$dirty || submitted)"> Password must be at least 3 characters. </p> </div> <p class="help-block"> {{ message }} </p> <button class="btn btn-lg btn-primary" type="submit">Save changes</button> <br> <br> </form> </div> </div> </div> |
Commits for YouAndWeb_TwoTocclient/app/account/settings/settings.html
Revision | Author | Commited | Message |
---|---|---|---|
a98e8d ...
![]() |
![]() |
Thu 26 Nov, 2015 13:26:45 +0000 | Creazione organizza |
a2ecfb ... | PTKDev | Fri 20 Nov, 2015 11:22:35 +0000 | TwoToc code |