@app.route("/chat")
def _chat():
with open("db/lastauthor.txt", "r") as file:
author = file.read()
with open("db/lastmsg.txt", "r") as file:
content = file.read()
return render_template("chat.html", author=author, content = content)