mirror of
https://github.com/simple-login/app.git
synced 2024-11-16 00:48:32 +01:00
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", activation_link) }}
|
|
{% endblock %}
|
|
|