Files
order/web/controllers/account/Account.py

17 lines
407 B
Python
Raw Normal View History

2019-07-21 18:20:01 +08:00
# -*- coding: utf-8 -*-
from flask import Blueprint,render_template
route_account = Blueprint( 'account_page',__name__ )
@route_account.route( "/index" )
def index():
return render_template( "account/index.html" )
@route_account.route( "/info" )
def info():
return render_template( "account/info.html" )
@route_account.route( "/set" )
def set():
return render_template( "account/set.html" )