2019-08-30 11:28:34 +00:00
|
|
|
<!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">
|
2019-09-02 08:02:26 +00:00
|
|
|
<form method='POST'>
|
2019-09-21 05:54:57 +00:00
|
|
|
<div class="panel-icon large" style="{{ 'background-image: url(\'' + icon + '\')' if icon else '' }}"></div>
|
2019-08-30 11:28:34 +00:00
|
|
|
<div class="container centred">
|
2019-09-02 06:59:49 +00:00
|
|
|
<p>Are you sure you want to <strong>permanently</strong> delete this bot?</p>
|
2019-09-21 05:54:57 +00:00
|
|
|
<p>The account on {{ instance }} will remain open, but FediBooks will stop posting from it.</p>
|
2019-08-31 10:49:50 +00:00
|
|
|
<a class="button btn-secondary" href="/"><i class="fas fa-times"></i> Cancel</a>
|
2019-08-30 11:28:34 +00:00
|
|
|
<button class="button btn-dangerous"><i class="fas fa-trash"></i> Delete bot</button>
|
|
|
|
</div>
|
|
|
|
</form>
|
|
|
|
</div>
|
|
|
|
|
|
|
|
{% include 'footer.html' %}
|
|
|
|
</body>
|
|
|
|
</html>
|