blob: daafa49084347a366493c0c20bb95dc8d08f81b7 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
|
{% extends 'base.html' %}
{% load staticfiles %}
{% load url from future %}
{% load bootstrap3 %}
{# step4: password reset complete template #}
{% block pagetitle %}成功设置新密码{% endblock %}
{% block content %}
<div class="container">
<h2>成功设置新密码</h2>
<br>
<p>您已成功设置了新的登录密码。 <a href="{% url 'login' %}" class="btn btn-primary">登录</a></p>
</div>
{% endblock %}
{# vim: set ts=8 sw=2 tw=0 fenc=utf-8 ft=htmldjango.html: #}
|