added bot deletion page

This commit is contained in:
Lynne Megido 2019-08-30 21:28:34 +10:00
parent 6093fd6f27
commit 6e4963df0b
2 changed files with 32 additions and 0 deletions

28
templates/bot_delete.html Normal file
View File

@ -0,0 +1,28 @@
<!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 class="bot-icon"></div>
</div>
<div class="container centred">
<form>
<div class="container centred">
<p>Are you sure you want to <strong>permanently</strong> delete bot name?</p>
<p>The account on instan.ce will remain open, but your bot will stop posting from it.</p>
<button class="button btn-secondary"><i class="fas fa-times"></i> Cancel</button>
<button class="button btn-dangerous"><i class="fas fa-trash"></i> Delete bot</button>
</div>
</form>
</div>
{% include 'footer.html' %}
</body>
</html>

View File

@ -31,6 +31,10 @@ def settings():
def bot_edit(id):
return render_template("bot_edit.html")
@app.route("/bot/delete/<id>")
def bot_delete(id):
return render_template("bot_delete.html")
@app.route("/bot/create/")
def bot_create():
session['step'] = 4