diff options
author | Dave Arter <davea@mysociety.org> | 2016-08-01 12:03:45 +0100 |
---|---|---|
committer | Dave Arter <davea@mysociety.org> | 2016-08-01 12:03:45 +0100 |
commit | 1af9684e54aedb7f9935cdc4d38a28c61ec7d1f5 (patch) | |
tree | d6b044f54e070f8dbf265083534e849eb9ad6ead /templates/email/default/change_email.html | |
parent | 14aaf6fafaa9aa8736f49851e95fa2c3c566c056 (diff) | |
parent | 27e0c74321f48f9997745bf00647e3958f34d8e2 (diff) |
Merge branch '1281-html-emails'
Diffstat (limited to 'templates/email/default/change_email.html')
-rw-r--r-- | templates/email/default/change_email.html | 22 |
1 files changed, 22 insertions, 0 deletions
diff --git a/templates/email/default/change_email.html b/templates/email/default/change_email.html new file mode 100644 index 000000000..965741eed --- /dev/null +++ b/templates/email/default/change_email.html @@ -0,0 +1,22 @@ +[% + +email_summary = "Click this link to change your " _ site_name _ " email address"; +email_columns = 1; + +PROCESS '_email_settings.html'; + +INCLUDE '_email_top.html'; + +%] + +<th style="[% td_style %][% only_column_style %]"> + <h1 style="[% h1_style %]">Change your [% site_name %] email address</h1> + <p style="[% p_style %]">Please click on the link below to confirm you wish to update your +email address on [% site_name %].</p> + <p style="margin: 20px auto; text-align: center"> + <a style="[% button_style %]" href="[% c.uri_for_action( 'auth/token', token ) %]">Change my email address</a> + </p> + <p style="[% p_style %]">If you no longer wish to change your email address, just ignore this email.</p> +</th> + +[% INCLUDE '_email_bottom.html' %] |