simple-login/templates/emails/transactional/activation.html
Son NK dd02a50bad Improve wordings
- forgot password page
- login page
- activation email
- reset password email
2020-02-06 11:37:10 +07:00

10 lines
401 B
HTML

{% extends "base.html" %}
{% block content %}
{{ render_text("Hi " + name) }}
{{ render_text("Thank you for choosing SimpleLogin.") }}
{{ render_text("To get started, please confirm that <b>" + email + "</b> is your email address by clicking on the button below or use this link " + activation_link + " within 1 hour.") }}
{{ render_button("Verify email", activation_link) }}
{% endblock %}