Fixed an issue that prevented the password reset tokens from working. Added email templates for password reset success and new account creation. Added more dynamic email template support.
9 lines
244 B
HTML
9 lines
244 B
HTML
{% extends "base.html" %}
|
|
|
|
{% block content %}
|
|
<div class="container">
|
|
<div class="heading">Success</div>
|
|
<p>Your password has been updated successfully!</p>
|
|
<a href="/" class="btn">Return to Home</a>
|
|
</div>
|
|
{% endblock %}
|