mirror of
https://github.com/Lynnesbian/FediBooks/
synced 2024-11-01 06:08:59 +00:00
28 lines
856 B
HTML
28 lines
856 B
HTML
<!DOCTYPE html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<title>FediBooks</title>
|
|
{% include 'imports.html' %}
|
|
</head>
|
|
|
|
<body>
|
|
<div class="container centred">
|
|
<h1 class="thin centred">Delete bot</h1>
|
|
</div>
|
|
|
|
<div class="container centred">
|
|
<form method='POST'>
|
|
<div class="panel-icon large" style="{{ 'background-image: url(\'' + icon + '\')' if icon else '' }}"></div>
|
|
<div class="container centred">
|
|
<p>Are you sure you want to <strong>permanently</strong> delete this bot?</p>
|
|
<p>The account on {{ instance }} will remain open, but FediBooks will stop posting from it.</p>
|
|
<a class="button btn-secondary" href="/"><i class="fas fa-times"></i> Cancel</a>
|
|
<button class="button btn-dangerous"><i class="fas fa-trash"></i> Delete bot</button>
|
|
</div>
|
|
</form>
|
|
</div>
|
|
|
|
{% include 'footer.html' %}
|
|
</body>
|
|
</html>
|