|
@ -1,15 +1,23 @@ |
|
|
from datetime import datetime |
|
|
|
|
|
from flask import Flask, render_template |
|
|
from flask import Flask, render_template |
|
|
from flask_bootstrap import Bootstrap |
|
|
from flask_bootstrap import Bootstrap |
|
|
from flask_moment import Moment |
|
|
from flask_moment import Moment |
|
|
|
|
|
from flask_wtf import FlaskForm |
|
|
|
|
|
from wtforms import StringField, SubmitField |
|
|
|
|
|
from wtforms.validators import DataRequired |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
app = Flask(__name__) |
|
|
app = Flask(__name__) |
|
|
|
|
|
app.config['SECRET_KEY'] = 'hard to guess string' |
|
|
|
|
|
|
|
|
bootstrap = Bootstrap(app) |
|
|
bootstrap = Bootstrap(app) |
|
|
moment = Moment(app) |
|
|
moment = Moment(app) |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
class NameForm(FlaskForm): |
|
|
|
|
|
name = StringField('What is your name?', validators=[DataRequired()]) |
|
|
|
|
|
submit = SubmitField('Submit') |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
@app.errorhandler(404) |
|
|
@app.errorhandler(404) |
|
|
def page_not_found(e): |
|
|
def page_not_found(e): |
|
|
return render_template('404.html'), 404 |
|
|
return render_template('404.html'), 404 |
|
@ -20,11 +28,11 @@ def internal_server_error(e): |
|
|
return render_template('500.html'), 500 |
|
|
return render_template('500.html'), 500 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
@app.route('/') |
|
|
|
|
|
|
|
|
@app.route('/', methods=['GET', 'POST']) |
|
|
def index(): |
|
|
def index(): |
|
|
return render_template('index.html', current_time=datetime.utcnow()) |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
@app.route('/user/<name>') |
|
|
|
|
|
def user(name): |
|
|
|
|
|
return render_template('user.html', name=name) |
|
|
|
|
|
|
|
|
name = None |
|
|
|
|
|
form = NameForm() |
|
|
|
|
|
if form.validate_on_submit(): |
|
|
|
|
|
name = form.name.data |
|
|
|
|
|
form.name.data = '' |
|
|
|
|
|
return render_template('index.html', form=form, name=name) |