-
Notifications
You must be signed in to change notification settings - Fork 0
/
hello.py
43 lines (35 loc) · 1.58 KB
/
hello.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
from flask import Flask, render_template, session, redirect, url_for, flash
from flask_bootstrap import Bootstrap
from flask_moment import Moment
from flask_wtf import FlaskForm
from wtforms import StringField, SubmitField, EmailField
from wtforms.validators import DataRequired, Email, Regexp
import re
app = Flask(__name__)
app.config['SECRET_KEY'] = 'hard to guess string'
bootstrap = Bootstrap(app)
moment = Moment(app)
class NameForm(FlaskForm):
name = StringField('What is your name?', validators=[DataRequired()])
email = EmailField('What is your UofT Email Address?', validators=[Email()])
submit = SubmitField('Submit')
@app.errorhandler(404)
def page_not_found(e):
return render_template('404.html'), 404
@app.errorhandler(500)
def internal_server_error(e):
return render_template('500.html'), 500
@app.route('/', methods=['GET', 'POST'])
def index():
form = NameForm()
if form.validate_on_submit():
old_name = session.get('name')
if old_name is not None and old_name != form.name.data:
flash('Looks like you have changed your name!')
session['name'] = form.name.data
old_email = session.get('email')
if old_email is not None and old_email != form.email.data:
flash('Looks like you have changed your email!')
session['email'] = form.email.data
return redirect(url_for('index'))
return render_template('index.html', form=form, name=session.get('name'), email=session.get('email') if session.get("email") != None and re.match("(.+)@(.*)(\\.*)utoronto\\.(.*)",session.get("email")) else None)