mirror of https://github.com/snachodog/mybuddy.git
11 lines
323 B
HTML
11 lines
323 B
HTML
|
{% extends "registration/base.html" %}
|
||
|
|
||
|
{% block title %}Password Reset Successfully!{% endblock %}
|
||
|
{% block content %}
|
||
|
|
||
|
<div class="text-center mb-0">
|
||
|
<p>Your password has been set. You may go ahead and log in now.</p>
|
||
|
<p class="mb-0"><a href="{{ login_url }}">Log in</a></p>
|
||
|
</div>
|
||
|
|
||
|
{% endblock %}
|