mirror of
https://github.com/haiwen/seahub.git
synced 2025-05-14 10:50:00 +00:00
17 lines
490 B
HTML
17 lines
490 B
HTML
{% extends "base.html" %}
|
|
{% load i18n %}
|
|
|
|
{% block breadcrumbs %}<div class="breadcrumbs"><a href="../../">{% trans 'Home' %}</a> › {% trans 'Password reset' %}</div>{% endblock %}
|
|
|
|
{% block title %}{% trans 'Password reset complete' %}{% endblock %}
|
|
|
|
{% block main_panel %}
|
|
|
|
<h2>{% trans 'Password reset complete' %}</h2>
|
|
|
|
<p>{% trans "Your password has been set. You may go ahead and log in now." %}</p>
|
|
|
|
<p><a href="{{ login_url }}">{% trans 'Log in' %}</a></p>
|
|
|
|
{% endblock %}
|