You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
10 lines
302 B
10 lines
302 B
4 years ago
|
from flask import render_template, flash, redirect, url_for, request
|
||
|
from app import app, db
|
||
|
#from app.forms import -
|
||
|
|
||
|
@app.route('/', methods=['GET'])
|
||
|
@app.route('/index', methods=['GET'])
|
||
|
def index():
|
||
|
message="Hello, World"
|
||
|
return render_template("index.html", title='Home', message=message)
|