Skip to content

Instantly share code, notes, and snippets.

@Kd-Here

Kd-Here/auth.py Secret

Created March 3, 2023 20:01
Show Gist options
  • Save Kd-Here/59e1cd6a28208421967401c2ca549864 to your computer and use it in GitHub Desktop.
Save Kd-Here/59e1cd6a28208421967401c2ca549864 to your computer and use it in GitHub Desktop.
from flask import Blueprint
auth = Blueprint('auth',__name__)
@auth.route('/login')
def login():
return "<h2>Login</h2>"
@auth.route('/sing-up')
def singin():
return "<h2>Singin</h2>"
@auth.route('/logout')
def logout():
return "<h2>Logout</h2>"
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment