20 lines
414 B
Python
20 lines
414 B
Python
# -*- coding: UTF-8 -*-
|
|
"""
|
|
@Project : FlaskProject
|
|
@File : Login.py
|
|
@IDE : PyCharm
|
|
@Author : 爱写屎山的王可奕
|
|
@Email : 1933658780@qq.com
|
|
@Date : 2023/4/28 9:12
|
|
@Comment : 登录功能的蓝图
|
|
"""
|
|
from flask import Blueprint, render_template
|
|
|
|
# 创建蓝图对象
|
|
bp_login = Blueprint('bp_login', __name__)
|
|
|
|
|
|
@bp_login.route('/login')
|
|
def login():
|
|
return render_template('login.html')
|