From d5b48089d89c52aa8ab165a70150d1e0e4ae5596 Mon Sep 17 00:00:00 2001 From: Son NK Date: Wed, 20 Nov 2019 22:42:36 +0100 Subject: [PATCH] fix line break in change-email template --- templates/emails/change-email.html | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/templates/emails/change-email.html b/templates/emails/change-email.html index 29824b94..2988a4ec 100644 --- a/templates/emails/change-email.html +++ b/templates/emails/change-email.html @@ -2,9 +2,9 @@ {% block content %} {{ render_text("Hi " + name + ",") }} - {{ render_text("You have asked to change your email to "+ new_email +".") }} - {{ render_text("Your current email is " + current_email + ".") }} - {{ render_text("To confirm, please click on the button below or use this link " + link + " within 12 hours.") }} + {{ render_text("You have asked to change your email to:
"+ new_email +".") }} + {{ render_text("Your current email is:
" + current_email + ".") }} + {{ render_text("To confirm, please click on the button below or use this link:
" + link + "
within 12 hours.") }} {{ render_button("Change email", link) }} {% endblock %}