SkyLearn-Test/templates/registration/password_reset_done.html
2023-01-12 23:17:10 +03:00

17 lines
583 B
HTML

{% extends 'registration/registration_base.html' %}
{% block title %}Email Sent | DjangoSMS{% endblock title %}
{% load crispy_forms_tags %}
{% block content %}
<div id="login">
<h3 class="login-title">Email sent</h3>
<div class="container">
<div class="alert alert-success">
<i class="fas fa-check-circle"></i>An Email has been sent with instructions
to reset your password, check your email.
</div>
<a class="btn btn-primary" href="{% url 'login' %}"><i class="far fa-arrow-alt-circle-left"></i>Back To Login</a>
</div>
</div>
{% endblock content %}