mirror of
https://github.com/haiwen/seahub.git
synced 2025-10-20 10:20:42 +00:00
15 lines
501 B
HTML
15 lines
501 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 successful' %}{% endblock %}
|
|
|
|
{% block main_panel %}
|
|
|
|
<h2>{% trans 'Password reset successful' %}</h2>
|
|
|
|
<p>{% trans "We've e-mailed you instructions for setting your password to the e-mail address you submitted. You should be receiving it shortly." %}</p>
|
|
|
|
{% endblock %}
|