blob: 55badd8fe5c4ba7783344dc500b213b27ec7c4a7 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
|
{% extends "base.html" %}
{% block js %}
{% endblock %}
{% block title %}Password Manager{% endblock %}
{% block content %}
<h2>Password Manager</h2>
<p>
Hello {{ full_name }},<br />
Welcome to the password management site.
</p>
<table>
<tr>
<th>Username:</th><td>{{ username }}</td>
</tr>
</table>
<p>
Available actions:
<a href="{% url changepw %}">Change password</a>
<a href="{% url resetpw %}">Reset password</a>
</p>
<p><a href="{% url logout %}">Log out</a></p>
{% endblock %}
|