add register, login and main page with basic functionality
This commit is contained in:
@@ -0,0 +1,7 @@
|
||||
from flask import Blueprint, render_template
|
||||
|
||||
main_bp = Blueprint("main", __name__)
|
||||
|
||||
@main_bp.route("/", methods=["GET", "POST"])
|
||||
def main():
|
||||
return render_template("main.html")
|
||||
Reference in New Issue
Block a user