wrote templates, started nameko, cleaned up a bit
This commit is contained in:
parent
a92054bc0a
commit
06249d530d
19 changed files with 338 additions and 13 deletions
|
|
@ -0,0 +1,21 @@
|
|||
<title> Options for {{user}} </title>
|
||||
|
||||
<h2> Welcome, {{user}} </h2>
|
||||
<br><br>
|
||||
You have the following options:
|
||||
<br>
|
||||
<form action={% url 'change_data' %} type="get">
|
||||
<input type="submit" value="Change your userdata">
|
||||
</form>
|
||||
<br>
|
||||
<form action={% url 'change_password' %} type="get">
|
||||
<input type="submit" value="Change your password">
|
||||
</form>
|
||||
<br>
|
||||
<form action={% url 'reset_password' %} type="get">
|
||||
<input type="submit" value="Reset your password">
|
||||
</form>
|
||||
<br>
|
||||
<form action={% url 'account_delete' %} type="get">
|
||||
<input type="submit" value="Delete your account">
|
||||
</form>
|
||||
Loading…
Add table
Add a link
Reference in a new issue