23 lines
448 B
HTML
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 %}
|