begin auth stuff

This commit is contained in:
2022-11-12 21:57:42 -05:00
parent 7169bb11c9
commit 7cb3aaf864
3 changed files with 45 additions and 0 deletions

12
auth.py Normal file
View File

@@ -0,0 +1,12 @@
from flask import Blueprint, render_template
from app import db
auth = Blueprint('auth', __name__)
@auth.route('/login')
def login():
return render_template('login.html')
@auth.route('/logout')
def logout():
return 'Logout'