You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
17 lines
572 B
17 lines
572 B
{% extends 'user/user_base.html' %}
|
|
{% load crispy_forms_tags %}
|
|
|
|
{% block personal %}
|
|
<div class="row">
|
|
<div class="col-6 offset-3">
|
|
<form action="{% url 'user:user_password' %}" method="post" enctype="multipart/form-data">
|
|
{% csrf_token %}
|
|
{{ form|crispy }}
|
|
<div class="mb-4 text-danger">{{ password_error }}</div>
|
|
<input type="submit" class="btn btn-primary">
|
|
<input type="reset" class="btn btn-danger">
|
|
|
|
</form>
|
|
</div>
|
|
</div>
|
|
{% endblock %} |