mirror of
https://github.com/simple-login/app.git
synced 2024-11-16 05:34:45 +08:00
dd02a50bad
- forgot password page - login page - activation email - reset password email
9 lines
401 B
HTML
9 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 %}
|
|
|