diff options
author | Matthew Somerville <matthew@mysociety.org> | 2012-10-11 16:53:15 +0100 |
---|---|---|
committer | Matthew Somerville <matthew@mysociety.org> | 2012-10-12 10:56:24 +0100 |
commit | 39c4afb7f7da189fb342d2b4082c539f2312d939 (patch) | |
tree | c15d9cc33a2dd79747ebab59c4943fd43729d6a8 | |
parent | a8043c120accf7edfd7c331f9032b28cd04ac07a (diff) |
Add forgotten password note.
-rw-r--r-- | templates/web/fixmystreet/report/new/fill_in_details_form.html | 6 | ||||
-rw-r--r-- | web/cobrands/fixmystreet/_layout.scss | 8 |
2 files changed, 14 insertions, 0 deletions
diff --git a/templates/web/fixmystreet/report/new/fill_in_details_form.html b/templates/web/fixmystreet/report/new/fill_in_details_form.html index 2662ac808..0c3523c73 100644 --- a/templates/web/fixmystreet/report/new/fill_in_details_form.html +++ b/templates/web/fixmystreet/report/new/fill_in_details_form.html @@ -170,6 +170,12 @@ <input type="checkbox" id="remember_me" name="remember_me" value='1'[% ' checked' IF remember_me %]> <label class="n inline" for="remember_me">[% loc('Keep me signed in on this computer') %]</label> </div> + + <div class="general-sidebar-notes" id="forgotten-pw"> + <p class="dark">[% loc('Forgotten your password?') %]</p> + <p>[% loc('Confirm by email below, providing a new password at that point. When you confirm, your password will be updated.') %]</p> + </div> + </div> <div id="form_sign_in_no" class="form-box"> diff --git a/web/cobrands/fixmystreet/_layout.scss b/web/cobrands/fixmystreet/_layout.scss index d2e47d76c..5262decc6 100644 --- a/web/cobrands/fixmystreet/_layout.scss +++ b/web/cobrands/fixmystreet/_layout.scss @@ -763,6 +763,14 @@ textarea.form-error { } } +/* Adjust the above so text flow can be different from display */ +#forgotten-pw { + position: relative; + left: 27em; + top: -7em; + margin-bottom: -7em; // So no gap in main flow +} + // Frontpage body.frontpage { |