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.
9 lines
302 B
9 lines
302 B
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)
|
|
|