def index(): return render_template("index.html")
def show_user(): return render_template('user.html', name=session['name'], email=['email'])
def not_found_error(error): return render_template('404.html'), 404
def internal_error(error): db.session.rollback() return render_template('500.html'), 500
def index(): return render_template('index.html')