39 lines
No EOL
1.6 KiB
HTML
39 lines
No EOL
1.6 KiB
HTML
{% extends "base_short.html" %}
|
|
{% load i18n staticfiles bootstrap3 %}
|
|
|
|
{% block title %}
|
|
<title> Deleting Account </title>
|
|
{% endblock %}
|
|
|
|
|
|
|
|
{% block content %}
|
|
<div class="auth-container">
|
|
<div class="auth-bg"></div>
|
|
<div class="auth-center">
|
|
<div class="auth-content">
|
|
<div class="auth-box">
|
|
<h1 class="section-heading allcaps">{% trans " Enter your credentials to confirm " %}</h1>
|
|
<form action="{% url 'account_delete' %}" method="post" class="form" novalidated>
|
|
{% csrf_token %}
|
|
<br><br>
|
|
<div class="form-group">
|
|
<label class="sr-only control-label" for="username">username</label>
|
|
<input type="text" name="username" class="form-control" placeholder="Username" title="" required="" id="username">
|
|
</div>
|
|
<div class="form-group">
|
|
<label class="sr-only control-label" for="password">password</label>
|
|
<input type="password" name="password" class="form-control" placeholder="Password" title="" required="" id="password">
|
|
</div>
|
|
<hr>
|
|
<div class="text-center">
|
|
<button type="submit" class="btn btn-danger btn-block">
|
|
{% trans "Delete Account" %}
|
|
</button>
|
|
</div>
|
|
</form>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
{% endblock %} |