mirror of
https://github.com/spiral-project/ihatemoney.git
synced 2025-05-02 11:12:23 +02:00
10 lines
296 B
HTML
10 lines
296 B
HTML
{% extends "layout.html" %}
|
|
|
|
{% block content %}
|
|
<h2>{{ _("Password reminder") }}</h2>
|
|
<p>
|
|
{{ _("A link to reset your password has been sent to you, please check your emails.") }}
|
|
</p>
|
|
<a class="btn btn-primary" href="{{ url_for('.home')}}">{{ _('Return to home page') }}</a>
|
|
|
|
{% endblock %}
|