Skip to content
Snippets Groups Projects
Commit 43ddfb02 authored by Shane Tomlinson's avatar Shane Tomlinson
Browse files

Setting max password length to 80.

parent 53a523b4
No related merge requests found
......@@ -32,7 +32,7 @@
<div class="half right">
<a id="forgotPassword" href="#">forgot your password?</a>
</div>
<input id="password" class="sans" type="password">
<input id="password" class="sans" type="password" maxlength="80">
</div>
<div id="hint_section" class="start">
......
......@@ -19,7 +19,7 @@
<!-- XXX: this needs to be fixed -->
<a class="forgot" href="/forgot" tabindex="4">forgot your password?</a>
</div>
<input class="sans" id="password" placeholder="Your Password" type="password" required x-moz-errormessage="Oops! We need your password to sign you in" tabindex="2">
<input class="sans" id="password" placeholder="Your Password" type="password" required x-moz-errormessage="Oops! We need your password to sign you in" tabindex="2" maxlength="80">
</li>
</ul>
......
......@@ -10,11 +10,11 @@
</li>
<li>
<label class="serif" for="password">New Password</label>
<input required class="sans" id="password" placeholder="Enter a Password" type="password" autofocus>
<input required class="sans" id="password" placeholder="Enter a Password" type="password" autofocus maxlength=80>
</li>
<li>
<label class="serif" for="vpassword">Verify Password</label>
<input required class="sans" id="vpassword" placeholder="Repeat Password" type="password">
<input required class="sans" id="vpassword" placeholder="Repeat Password" type="password" maxlength=80>
</li>
</ul>
<div class="submit cf">
......@@ -45,4 +45,4 @@ $(document).ready(function() {
$('#signUpFormWrap').html('There was a problem with your signup link.');
});
});
</script>
\ No newline at end of file
</script>
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment