본문 바로가기

flask

flask test

from flask import Flask, render_template
app = Flask(__name__)
from user import routes
@app.route('/')
def index():
    return render_template('home.html')

@app.route('/home')
def home():
    return render_template('home.html')

@app.route('/dashboard/')
def dashboard():
    return render_template('dashboard.html')