Files
runnerspace/flash_auth_app/project/auth.py
2022-03-26 17:18:12 -05:00

23 lines
467 B
Python

from flask import Blueprint
from . import db
auth = Blueprint('auth', __name__)
'''
FIXME this will have to be revisited later with added funcitonality,
as right now `login`, `signup`, and `logout` only return text
There will also be routes for handling POST requests from login and signup
'''
@auth.route('/login')
def login():
return 'Login'
@auth.route('/signup')
def signup():
return 'Signup'
@auth.route('/logout')
def logout():
return 'Logout'