浏览代码

fix line break in change-email template

Son NK 5 年之前
父节点
当前提交
d5b48089d8
共有 1 个文件被更改,包括 3 次插入3 次删除
  1. 3 3
      templates/emails/change-email.html

+ 3 - 3
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 <b>"+ new_email +"</b>.") }}
-  {{ 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: <br><b>"+ new_email +"</b>.") }}
+  {{ render_text("Your current email is: <br>" + current_email + ".") }}
+  {{ render_text("To confirm, please click on the button below or use this link: <br> " + link + "<br> within 12 hours.") }}
   {{ render_button("Change email", link) }}
 {% endblock %}