pflaenz.li/pflaenzli/pflaenzli/templates/registration/verify_email_done.html

12 lines
461 B
HTML
Raw Normal View History

2023-04-16 19:19:05 +02:00
{% extends 'base.html' %}
2023-05-16 23:36:40 +02:00
{% load i18n %}
2023-04-16 19:19:05 +02:00
{% block content %}
2023-05-16 23:36:40 +02:00
<h1>{% trans "Reset password" %}</h1>
2023-04-16 19:19:05 +02:00
<p>
2023-05-16 23:36:40 +02:00
{% trans "We've emailed you instructions for setting your password, if an account exists with the email you entered. You should receive them shortly." %}
2023-04-16 19:19:05 +02:00
</p>
<p>
2023-05-16 23:36:40 +02:00
{% trans "If you don't receive an email, please make sure you've entered the address you registered with, and check your spam folder." %}
2023-04-16 19:19:05 +02:00
</p>
{% endblock %}