blob: bd607efd135db78af02ad3118ff269d96ea4cce8 (
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
26
27
28
|
{% 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>Your usernames</th>
</tr>
<tr>
<td>Username:</td><td>{{ username }}</td>
</tr>
</table>
<p>Available actions:</p>
<ul>
<li><a href="{% url changepw %}">Change password.</a></li>
<li><a href="{% url resetpw %}">Reset password.</a></li>
</ul>
<p><a href="{% url logout %}">Log out</a></p>
{% endblock %}
|