From e3b28feaf06e3ba86f248b00ec8128e4698face3 Mon Sep 17 00:00:00 2001 From: Son NK Date: Wed, 12 Feb 2020 18:13:31 +0700 Subject: [PATCH] Improve reset-password email wording --- templates/emails/transactional/reset-password.html | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/templates/emails/transactional/reset-password.html b/templates/emails/transactional/reset-password.html index 1fe9270d..8b2a53f5 100644 --- a/templates/emails/transactional/reset-password.html +++ b/templates/emails/transactional/reset-password.html @@ -2,11 +2,11 @@ {% block content %} {{ render_text("Hi " + name) }} - {{ render_text("You have asked to change your password.") }} - {{ render_text("To confirm, please click on the button below within 1 hour.") }} + {{ render_text("You recently requested to reset your password on SimpleLogin.") }} + {{ render_text("Use the button below to reset it. This password reset is only valid for the next hour.") }} {{ render_button("Reset your password", reset_password_link) }} - {{ render_text("If the password token has expired, you can request a new link by following the same process as before.") }} + {{ render_text("If the button has expired, you can request a new link by following the same process as before.") }} {{ render_text("If you did not request a password reset, no further action is required.") }} {{ render_text('Thanks,
SimpleLogin Team.') }} {{ raw_url(reset_password_link) }}