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')flask