mybuddy/babybuddy/templates/registration/password_reset_complete.html

14 lines
407 B
HTML
Raw Permalink Normal View History

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