1
0
Fork 0
mirror of https://github.com/Lynnesbian/FediBooks/ synced 2024-10-05 02:13:04 +00:00
FediBooks/webui.py

12 lines
220 B
Python
Raw Normal View History

2019-08-27 10:36:54 +00:00
from flask import Flask, render_template
app = Flask(__name__)
@app.route("/")
def hello():
return render_template("front_page.html")
@app.route("/login")
def show_login_page():
return render_template("login.html")