Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

M2-5085: Update copy for reset password email #1075

Merged
merged 1 commit into from
Feb 12, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
12 changes: 5 additions & 7 deletions src/apps/mailing/static/templates/blocks/write_us_en.html
Original file line number Diff line number Diff line change
@@ -1,7 +1,5 @@
<tr>
<td style="padding-bottom: 1%">
If you have had any issues creating an account or joining someone else’s applet, please
<a href="https://mindlogger.atlassian.net/servicedesk/customer/portal/1/group/1/create/12">write
to us</a> for help.
</td>
</tr>
<tr>
<td style="padding-bottom: 1%">
Need help? <a href="https://mindlogger.atlassian.net/servicedesk/customer/portals">Visit our Help Center</a>.
</td>
</tr>
67 changes: 30 additions & 37 deletions src/apps/mailing/static/templates/reset_password_en.html
Original file line number Diff line number Diff line change
@@ -1,41 +1,34 @@
<html style="max-width: 700px" lang="en">
<body>
{% include 'header.html' %}
<table style="padding: 0">
<tr>
<td style="padding-bottom: 1%">
A password reset has been requested. Please use this <a href="{{url}}">link</a> to reset your password.
</td>
</tr>
<tr>
<td style="padding-bottom: 1%">
The link will expire in 15 minutes.
</td>
</tr>
<tr>
<td style="padding-bottom: 1%">
If you did not initiate this temporary access request, you can ignore this email.
</td>
</tr>
<tr>
<td style="padding-bottom: 1%">
Please be aware that if you update your password, the data that has been previously recorded will be deleted.
</td>
</tr>
{% include 'blocks/write_us_en.html' %}
<tr>
<td style="padding-bottom: 1%">
Thanks,
</td>
</tr>
<tr>
<td style="padding-bottom: 1%">
Team MindLogger
</td>
</tr>

</table>
{% include 'footers/footer_contact_us_en.html' %}
<body>
{% include 'header.html' %}
<table style="padding: 0">
<tr>
<td style="padding-bottom: 1%">
We received a request to reset your password.
</td>
</tr>
<tr>
<td style="padding-bottom: 1%">
<a href="{{url}}">Click this link</a> to reset your password now. The link will expire in 15 minutes.
</td>
</tr>
<tr>
<td style="padding-bottom: 1%">
If you did not make this request, you can ignore this email.
</td>
</tr>
<tr>
<td style="padding-bottom: 1%">
After updating your password, you won’t see your past data in the app. But don’t worry, we still have it.
</td>
</tr>
{% include 'blocks/write_us_en.html' %}
<tr>
<td style="padding-bottom: 1%">– The MindLogger Team</td>
</tr>
</table>
{% include 'footers/footer_contact_us_en.html' %}
</body>

</html>
</html>
Loading