Files
TipPy/templates/registration/password_change_done.html
2016-01-20 16:56:31 +01:00

23 lines
448 B
HTML

{% extends "base.html" %}
{% load i18n static %}
{% block title %}{% trans 'Password change successful' %}{% endblock %}
{% block nav %}
{% include "nav.html" with ls=ls season=season %}
{% endblock %}
{% block body %}
<div id="content-main">
<div class="row">
<div class="col-md-5">
<h3>{% trans 'Password change successful' %}</h3>
<p>{% trans 'Your password was changed.' %}</p>
</div>
</div>
</div>
{% endblock %}