summaryrefslogtreecommitdiff
path: root/templates/changepw/index.html
diff options
context:
space:
mode:
Diffstat (limited to 'templates/changepw/index.html')
-rw-r--r--templates/changepw/index.html28
1 files changed, 28 insertions, 0 deletions
diff --git a/templates/changepw/index.html b/templates/changepw/index.html
new file mode 100644
index 0000000..bd607ef
--- /dev/null
+++ b/templates/changepw/index.html
@@ -0,0 +1,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 %}