mirror of
https://github.com/simple-login/app.git
synced 2024-11-13 07:31:12 +01:00
9 lines
349 B
HTML
9 lines
349 B
HTML
{% extends "base.html" %}
|
|
|
|
{% block content %}
|
|
{{ render_text("Hi " + name) }}
|
|
{{ render_text("You have asked to change your password.") }}
|
|
{{ render_text("To confirm, please click on the button below or use this link " + reset_password_link + " within 1 hour.") }}
|
|
{{ render_button("Reset password", reset_password_link) }}
|
|
{% endblock %}
|
|
|