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