mirror of
https://github.com/simple-login/app.git
synced 2024-11-01 03:21:01 +01:00
cb7868bdca
* Add DJlint configuration * Initial reformat for djlint * Add template linting to CI * Add explanation for HTML template checks in CONTRIBUTING.md
15 lines
475 B
HTML
15 lines
475 B
HTML
{% extends "developer/client_details/base.html" %}
|
|
|
|
{% set client_details_page = "advanced" %}
|
|
{% block client_details_content %}
|
|
|
|
<h1 class="h2">Danger Zone</h1>
|
|
<form method="post">
|
|
{{ form.csrf_token }}
|
|
<div class="alert alert-danger">
|
|
When your website is deleted, users can no longer log into it. This operation is not reversible!
|
|
</div>
|
|
<button type="submit" class="btn btn-danger">Delete "{{ client.name }}"</button>
|
|
</form>
|
|
{% endblock %}
|