Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 4 additions & 4 deletions webapp/app/partials/admin/change_pwd.html
Original file line number Diff line number Diff line change
Expand Up @@ -51,8 +51,8 @@ <h4>Change Password</h4>
<div class="form-group">
<label><b>User New Password</b></label>
<div class="clearfix">
<input required ng-pattern="pwdPattern" name="pwd_input" type="password" class="form-control"
placeholder="The password should contain at least one number, letter and special character(~!@#$%^&*(){}|:&quot;\<\>?[];\',./`)."
<input required ng-pattern="pwdPattern" name="pwd_input" type="password" class="form-control"
placeholder="The password should have at least 8 characters, and contain at least one number, letter and special character(~!@#$%^&*(){}|:&quot;\<\>?[];\',./`)."
ng-model="changePwdUser.newPassword"/>
<span class="text-warning"
ng-if="change_pwd_form.pwd_input.$error.required && change_pwd_form.pwd_input.$dirty"
Expand All @@ -65,8 +65,8 @@ <h4>Change Password</h4>
<div class="form-group">
<label><b>Confirm New Password</b></label>
<div class="clearfix">
<input required name="pwd_new_input" type="password" class="form-control"
placeholder="The password should contain at least one number, letter and special character(~!@#$%^&*(){}|:&quot;\<\>?[];\',./`)."
<input required name="pwd_new_input" type="password" class="form-control"
placeholder="The password should have at least 8 characters, and contain at least one number, letter and special character(~!@#$%^&*(){}|:&quot;\<\>?[];\',./`)."
ng-model="changePwdUser.repeatPassword"/>
<span class="text-warning"
ng-if="user_create_form.pwd_new_input.$error.required && user_create_form.pwd_new_input.$dirty"
Expand Down
2 changes: 1 addition & 1 deletion webapp/app/partials/admin/user_create.html
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ <h4>New User</h4>
<div class="form-group">
<label><b>User Password</b></label>
<div class="clearfix">
<input ng-pattern="pwdPattern" required name="pwd_input" type="password" class="form-control" placeholder="The password should contain at least one number, letter and special character(~!@#$%^&*(){}|:&quot;\<\>?[];\',./`)." ng-model="user.password"/>
<input ng-pattern="pwdPattern" required name="pwd_input" type="password" class="form-control" placeholder="The password should have at least 8 characters, and contain at least one number, letter and special character(~!@#$%^&*(){}|:&quot;\<\>?[];\',./`)." ng-model="user.password"/>
<span class="text-warning"
ng-if="user_create_form.pwd_input.$error.required && user_create_form.pwd_input.$dirty"
>&nbsp;The password is required</span>
Expand Down