##// END OF EJS Templates
release: Finish preparation for 4.18.0
release: Finish preparation for 4.18.0

File last commit:

r4038:4a4a02a9 default
r4182:f37a3126 v4.18.0 stable
Show More
password_reset.mako
37 lines | 1.2 KiB | application/x-mako | MakoHtmlLexer
project: added all source files and assets
r1 ## -*- coding: utf-8 -*-
<%inherit file="base.mako"/>
dan
emails: updated emails design and data structure they provide....
r4038 <%namespace name="base" file="base.mako"/>
project: added all source files and assets
r1
emails: fixed newlines in email templates that can break email sending code.
r1728 <%def name="subject()" filter="n,trim,whitespace_filter">
project: added all source files and assets
r1 RhodeCode Password reset
</%def>
## plain text version of the email. Empty by default
<%def name="body_plaintext()" filter="n,trim">
dan
emails: updated emails design and data structure they provide....
r4038 Hello ${user.username},
project: added all source files and assets
r1
dan
emails: updated emails design and data structure they provide....
r4038 On ${h.format_date(date)} there was a request to reset your password using the email address `${email}`
project: added all source files and assets
r1
dan
emails: updated emails design and data structure they provide....
r4038 *If you did not request a password reset, please contact your RhodeCode administrator at: ${first_admin_email}*
project: added all source files and assets
r1
You can continue, and generate new password by clicking following URL:
${password_reset_url}
password-reset: strengthten security on password reset logic....
r1471 This link will be active for 10 minutes.
dan
emails: updated emails design and data structure they provide....
r4038
---
notifications: restyling email templates #4087
r508 ${self.plaintext_footer()}
project: added all source files and assets
r1 </%def>
## BODY GOES BELOW
notifications: restyling email templates #4087
r508 <p>
Hello ${user.username},
</p><p>
dan
emails: updated emails design and data structure they provide....
r4038 On ${h.format_date(date)} there was a request to reset your password using the email address `${email}`
<br/><br/>
<strong>If you did not request a password reset, please contact your RhodeCode administrator at: ${first_admin_email}.</strong>
notifications: restyling email templates #4087
r508 </p><p>
dan
emails: updated emails design and data structure they provide....
r4038 You can continue, and generate new password by clicking following URL:<br/><br/>
<a href="${password_reset_url}" style="${base.link_css()}">${password_reset_url}</a>
<br/><br/>This link will be active for 10 minutes.
emails: optimize some labels, and made few i18n fixes....
r532 </p>