2018-10-10 16:07:22 +00:00
|
|
|
<title> Deleting an Account </title>
|
|
|
|
|
|
|
|
<h2> Deleting an Account </h2>
|
|
|
|
<br><br>
|
2018-10-14 15:48:11 +00:00
|
|
|
<form action={% url 'index' %} method="get">
|
2018-10-10 16:07:22 +00:00
|
|
|
<input type="submit" value="Back to indexpage">
|
|
|
|
</form>
|
|
|
|
<br><br>
|
|
|
|
To delete an account, please type the username and password below:
|
2018-10-14 15:48:11 +00:00
|
|
|
<form action={% url 'account_delete' %} method="post">
|
2018-10-14 17:21:17 +00:00
|
|
|
{% csrf_token %}
|
2018-10-10 16:07:22 +00:00
|
|
|
<br><br>Username:<br>
|
|
|
|
<input type="text" name="username" id="username">
|
|
|
|
<br><br>Password:<br>
|
|
|
|
<input type="password" name="password" id="password">
|
|
|
|
<br><br>
|
|
|
|
<input type="submit" value="Submit">
|
|
|
|
</form>
|