feat: Add basic user handling
This commit is contained in:
15
src/templates/registration/password_reset_form.html
Normal file
15
src/templates/registration/password_reset_form.html
Normal file
@@ -0,0 +1,15 @@
|
||||
{% extends "fellchensammlung/base_generic.html" %}
|
||||
{% load i18n %}
|
||||
|
||||
{% block content %}
|
||||
<form action="" method="post">
|
||||
{% csrf_token %}
|
||||
{% if form.email.errors %}
|
||||
{{ form.email.errors }}
|
||||
{% endif %}
|
||||
<h1> {% translate "Password reset" %} </h1>
|
||||
<p>{% translate "Provide the e-mail address that is connected with your account" %}</p>
|
||||
<p>{{ form.email }}</p>
|
||||
<input type="submit" class="btn btn-default btn-lg" value={% translate "Reset" %}>
|
||||
</form>
|
||||
{% endblock %}
|
Reference in New Issue
Block a user