Files
goodtimes/templates/accounts/authentication/password_reset_form.html
rizwanisready db213d3228 wrong commit
2024-02-29 13:25:50 +05:30

33 lines
864 B
HTML

{% extends '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 '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 %}