11 lines
221 B
Python
11 lines
221 B
Python
from flask import Blueprint
|
|
|
|
bp = Blueprint('account', __name__)
|
|
|
|
@bp.route('/')
|
|
def account_home():
|
|
return "Welcome to the Account Addon!"
|
|
|
|
@bp.route('/profile')
|
|
def profile():
|
|
return "This is the user profile page." |