diff options
author | Johan Lundberg <lundberg@nordu.net> | 2011-05-10 11:09:55 +0200 |
---|---|---|
committer | Johan Lundberg <lundberg@nordu.net> | 2011-05-10 11:09:55 +0200 |
commit | 01405d73d6839ae7e267482d483aecc628a67afd (patch) | |
tree | e49518ab3e6a4bde6622b449b5047978cd60fcbf /templates/changepw/index.html | |
parent | 1c7bea1c752b7cb9b258230d16006a17b2ed1f8d (diff) |
Added reset password functionality.
Diffstat (limited to 'templates/changepw/index.html')
-rw-r--r-- | templates/changepw/index.html | 28 |
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 %} |