Page MenuHomeMusing Studio

No OneTemporary

diff --git a/pages/landing.tmpl b/pages/landing.tmpl
index 2131b40..8716ead 100644
--- a/pages/landing.tmpl
+++ b/pages/landing.tmpl
@@ -94,7 +94,7 @@ form dd {
</label>
<label>
<dt>Password</dt>
- <dd><input type="password" id="password" name="pass" autocomplete="new-password" placeholder="" tabindex="2" style="width: 100%; box-sizing: border-box;" {{if .ForcedLanding}}disabled{{end}} /></dd>
+ <dd><input type="password" id="password" name="pass" maxlength="72" autocomplete="new-password" placeholder="" tabindex="2" style="width: 100%; box-sizing: border-box;" {{if .ForcedLanding}}disabled{{end}} /></dd>
</label>
<label>
<dt>Email (optional)</dt>
diff --git a/pages/reset.tmpl b/pages/reset.tmpl
index bc18377..64edb27 100644
--- a/pages/reset.tmpl
+++ b/pages/reset.tmpl
@@ -31,7 +31,7 @@ label {
<form method="post" action="/reset" onsubmit="disableSubmit()">
<label>
<p>New Password</p>
- <input type="password" name="new-pass" autocomplete="new-password" placeholder="New password" tabindex="1" />
+ <input type="password" name="new-pass" maxlength="72" autocomplete="new-password" placeholder="New password" tabindex="1" />
</label>
<input type="hidden" name="t" value="{{.Token}}" />
<input type="submit" id="btn-login" value="Reset Password" />
diff --git a/pages/signup.tmpl b/pages/signup.tmpl
index b1bb50d..540db3f 100644
--- a/pages/signup.tmpl
+++ b/pages/signup.tmpl
@@ -85,7 +85,7 @@ form dd {
</label>
<label>
<dt>Password</dt>
- <dd><input type="password" id="password" name="pass" autocomplete="new-password" placeholder="" tabindex="2" style="width: 100%; box-sizing: border-box;" /></dd>
+ <dd><input type="password" id="password" name="pass" maxlength="72" autocomplete="new-password" placeholder="" tabindex="2" style="width: 100%; box-sizing: border-box;" /></dd>
</label>
<label>
<dt>Email (optional)</dt>
diff --git a/templates/user/settings.tmpl b/templates/user/settings.tmpl
index 829e4be..fbec62c 100644
--- a/templates/user/settings.tmpl
+++ b/templates/user/settings.tmpl
@@ -57,11 +57,11 @@ h3 { font-weight: normal; }
<div class="section">
{{if and (not .HasPass) (not .IsLogOut)}}<div class="alert info"><p>Add a passphrase to easily log into your account.</p></div>{{end}}
{{if .HasPass}}<p>Current passphrase</p>
- <input type="password" name="current-pass" placeholder="Current passphrase" tabindex="1" /> <input class="show" type="checkbox" id="show-cur-pass" /><label for="show-cur-pass"> Show</label>
+ <input type="password" name="current-pass" maxlength="72" placeholder="Current passphrase" tabindex="1" /> <input class="show" type="checkbox" id="show-cur-pass" /><label for="show-cur-pass"> Show</label>
<p>New passphrase</p>
{{end}}
{{if .IsLogOut}}<input type="text" value="{{.Username}}" style="display:none" />{{end}}
- <input type="password" name="new-pass" autocomplete="new-password" placeholder="New passphrase" tabindex="{{if .IsLogOut}}1{{else}}2{{end}}" /> <input class="show" type="checkbox" id="show-new-pass" /><label for="show-new-pass"> Show</label>
+ <input type="password" name="new-pass" maxlength="72" autocomplete="new-password" placeholder="New passphrase" tabindex="{{if .IsLogOut}}1{{else}}2{{end}}" /> <input class="show" type="checkbox" id="show-new-pass" /><label for="show-new-pass"> Show</label>
</div>
</div>

File Metadata

Mime Type
text/x-diff
Expires
Sun, May 17, 11:19 PM (1 d, 7 h)
Storage Engine
blob
Storage Format
Raw Data
Storage Handle
3733573

Event Timeline