You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
25 lines
500 B
25 lines
500 B
{% extends "base.html" %}
|
|
|
|
{% block title %}Account - Poker Rumble{% endblock %}
|
|
|
|
{% block content %}
|
|
|
|
<div class="login">
|
|
|
|
{% if messages %}
|
|
<p>
|
|
{% for message in messages %}
|
|
<span class="primary label">{{ message }}</span>
|
|
{% endfor %}
|
|
</p>
|
|
{% endif %}
|
|
|
|
<h1>Account</h1>
|
|
|
|
<ul>
|
|
<li><a href="{% url 'news:password_change' %}">Change password</a></li>
|
|
</ul>
|
|
|
|
</div>
|
|
|
|
{% endblock %}
|
|
|