2018-10-10 16:07:22 +00:00
|
|
|
<title> Options for {{user}} </title>
|
|
|
|
|
|
|
|
<h2> Welcome, {{user}} </h2>
|
|
|
|
<br><br>
|
|
|
|
You have the following options:
|
|
|
|
<br>
|
2018-10-14 15:48:11 +00:00
|
|
|
<form action={% url 'change_data' %} method="get">
|
2018-10-10 16:07:22 +00:00
|
|
|
<input type="submit" value="Change your userdata">
|
|
|
|
</form>
|
|
|
|
<br>
|
2018-10-14 15:48:11 +00:00
|
|
|
<form action={% url 'change_password' %} method="get">
|
2018-10-10 16:07:22 +00:00
|
|
|
<input type="submit" value="Change your password">
|
|
|
|
</form>
|
|
|
|
<br>
|
2018-10-14 15:48:11 +00:00
|
|
|
<form action={% url 'reset_password' %} method="get">
|
2018-10-10 16:07:22 +00:00
|
|
|
<input type="submit" value="Reset your password">
|
|
|
|
</form>
|
|
|
|
<br>
|
2018-10-14 15:48:11 +00:00
|
|
|
<form action={% url 'account_delete' %} method="get">
|
2018-10-10 16:07:22 +00:00
|
|
|
<input type="submit" value="Delete your account">
|
|
|
|
</form>
|
2018-10-14 17:21:17 +00:00
|
|
|
<form action={% url 'logout' %} method="get">
|
|
|
|
<input type="submit" value="Logout">
|
|
|
|
</form>
|