summaryrefslogtreecommitdiff
path: root/index.html
diff options
context:
space:
mode:
authorMarko Pušnik <marko.pusnik@guru.si>2015-10-12 11:52:00 +0200
committerMarko Pušnik <marko.pusnik@guru.si>2015-10-12 11:52:00 +0200
commit894df8afb3c70f2b17437d10d43a7b62402f59c3 (patch)
tree653d57072a307c2ec10223310f180385e7beb67a /index.html
parent3c03af39297f47af09def0cacba5190b0081a718 (diff)
ResetPassword: form validation
Diffstat (limited to 'index.html')
-rw-r--r--index.html10
1 files changed, 5 insertions, 5 deletions
diff --git a/index.html b/index.html
index 15148ba..9dd8a7c 100644
--- a/index.html
+++ b/index.html
@@ -351,7 +351,7 @@
<h3 class="text-center">Sign up</h3>
</div>
<div class="modal-body">
- <form id="formSignUp" class="form" action="">
+ <form id="formSignUp" class="form">
<div class="form-group">
<label class="control-label small">Username</label>
<input class="form-control" name="username" id="modalSignUpUsername" type="text" placeholder="desired username" pattern="^[a-z,A-Z,0-9,_]{5,15}$" data-valid-min="5" title="Choose a alpha-numeric username of 5-15 characters" required="">
@@ -390,20 +390,20 @@
<h3 class="text-center">Change password </h3>
</div>
<div class="modal-body">
- <form class="form" method="post">
+ <form id="formChangePassword" class="form">
<div class="form-group">
<label class="control-label small">New Password</label>
- <input class="form-control" placeholder="Enter a new password" name="new" id="modalChangePasswordNew" type="password">
+ <input class="form-control" placeholder="Enter a new password" name="new" id="modalChangePasswordNew" type="password" pattern="^[a-z,A-Z,0-9,_]{6,}$" data-valid-min="6" title="Choose a alpha-numeric password of a least 6 characters" required="">
</div>
<div class="form-group">
<label class="control-label small">Verify Password</label>
- <input class="form-control" placeholder="Repeat the password again" name="verify" id="modalChangePasswordVerify" type="password">
+ <input class="form-control" placeholder="Repeat the password again" name="verify" id="modalChangePasswordVerify" type="password" pattern="^[a-z,A-Z,0-9,_]{6,}$" data-valid-min="6" title="Choose a alpha-numeric password of a least 6 characters" required="">
</div>
</form><!--/row-->
</div><!--/modal-body-->
<div class="modal-footer">
<button class="btn btn-default" data-dismiss="modal" aria-hidden="true">Cancel</button>
- <button class="btn btn-primary" id="btnPasswdChange" type="submit" onclick="codeq.profile.changePassword()">Change</button>
+ <input form="formChangePassword" class="btn btn-primary" id="btnPasswdChange" type="submit" value="Change password"></button>
</div><!--/modal-footer-->
</div>
</div>