aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMatthew Somerville <matthew@mysociety.org>2016-06-17 10:47:18 +0100
committerMatthew Somerville <matthew-github@dracos.co.uk>2016-07-06 12:58:45 +0100
commite0f1d53bb7aed17dd3a932cca6b933b94a6d1e5b (patch)
tree7a1112a12c5e8a7f1612943271d676193f54fcf2
parent5aaf27a430686748c6ec1f672ff3c1124cfab793 (diff)
Add forgotten password help to general auth page.
Match the help given in new report/update form.
-rw-r--r--templates/web/base/auth/general.html11
1 files changed, 9 insertions, 2 deletions
diff --git a/templates/web/base/auth/general.html b/templates/web/base/auth/general.html
index 253dc26a1..a8bf8f1e0 100644
--- a/templates/web/base/auth/general.html
+++ b/templates/web/base/auth/general.html
@@ -86,8 +86,15 @@
<input class="green-btn" type="submit" name="sign_in" value="[% loc('Sign in') %]">
</div>
- <input type="checkbox" id="remember_me" name="remember_me" value='1'[% ' checked' IF remember_me %]>
- <label class="inline n" for="remember_me">[% loc('Keep me signed in on this computer') %]</label>
+ <div class="checkbox-group">
+ <input type="checkbox" id="remember_me" name="remember_me" value='1'[% ' checked' IF remember_me %]>
+ <label class="inline n" for="remember_me">[% loc('Keep me signed in on this computer') %]</label>
+ </div>
+
+ <div class="general-notes">
+ <p><strong>[% loc('Forgotten your password?') %]</strong>
+ [% loc('Sign in by email instead, providing a new password. When you click the link in your email, your password will be updated.') %]</p>
+ </div>
</div>
[% END %]