33 lines
894 B
HTML
33 lines
894 B
HTML
|
|
{% extends 'base_structure/layout/base_authentication_template.html' %}
|
||
|
|
|
||
|
|
{% load static %}
|
||
|
|
{% block content %}
|
||
|
|
|
||
|
|
<div class="card mt-3 mb-3">
|
||
|
|
<div class="card-header">
|
||
|
|
<h2>Password Reset</h2>
|
||
|
|
<p>Enter your email to recover your ID</p>
|
||
|
|
</div>
|
||
|
|
<div class="card-body">
|
||
|
|
|
||
|
|
<div class="row">
|
||
|
|
<form method="POST">
|
||
|
|
{% csrf_token %}
|
||
|
|
{% include 'base_structure/includes/dynamic_template_form.html' with form=form %}
|
||
|
|
<div class="col-12">
|
||
|
|
<div class="mb-4">
|
||
|
|
<button type="submit" class="btn btn-secondary w-100">RECOVERY</button>
|
||
|
|
</div>
|
||
|
|
</div>
|
||
|
|
</form>
|
||
|
|
</div>
|
||
|
|
|
||
|
|
</div>
|
||
|
|
</div>
|
||
|
|
|
||
|
|
{% endblock content%}
|
||
|
|
|
||
|
|
{% block javascript %}
|
||
|
|
<!-- include required js cdn link through html here -->
|
||
|
|
|
||
|
|
{% endblock %}
|