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

13 lines
394 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
{% load crispy_forms_tags %}
{% block content %}
2023-05-16 23:36:40 +02:00
<h1>{% trans "Reset password" %}</h1>
<p>{% trans "Enter the email of your account, you'll then recieve a reset link." %}</p>
2023-04-16 19:19:05 +02:00
<form method="post">
{% csrf_token %}
{{ form|crispy }}
<input type="submit" value="Submit" class="btn btn-pfl"/>
</form>
{% endblock %}