show basic coming soon page for unimplemented features

This commit is contained in:
Lynne Megido 2019-09-02 17:20:28 +10:00
parent 887aab6a71
commit 3b7b479b1b
2 changed files with 15 additions and 0 deletions

View File

@ -168,3 +168,10 @@ label {
form .row {
margin: 10px 0;
}
.coming-soon {
height: 200px;
width: 200px;
background: center/contain url("https://lynnesbian.space/img/bune.png");
display: inline-block;
}

View File

@ -81,6 +81,14 @@ def bot_delete(id):
instance = id.split("@")[2]
return render_template("bot_delete.html", instance = instance)
@app.route("/bot/chat/<id>")
def bot_chat(id):
return render_template("coming_soon.html")
@app.route("/bot/blacklist/<id>")
def bot_blacklist(id):
return render_template("coming_soon.html")
@app.route("/bot/accounts/<id>")
def bot_accounts(id):
return render_template("bot_accounts.html")