15 lines
428 B
HTML
15 lines
428 B
HTML
{% extends "users/publicbase.html" %}
|
|
{% load crispy_forms_tags %}
|
|
{% block content %}
|
|
<div class="content-section col-6">
|
|
<h3>Passwort erstellen</h3>
|
|
<hr>
|
|
<!-- FORMS LADEN users/userforms.py und users/views.py -->
|
|
<form method="POST">
|
|
{% csrf_token %}
|
|
{{ form|crispy }}
|
|
<hr>
|
|
<button type="submit" class="btn btn-success">Passwort anfordern</button>
|
|
</form>
|
|
</div>
|
|
{% endblock content %} |