aboutsummaryrefslogtreecommitdiff
path: root/app/views/main.py
blob: 4814007a9b8f05687745cd24bdd7237de5418c22 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
from app import app
from app.forms.app_forms import MyForm
from flask import render_template, flash
from app.views import auth, error_pages
from app.misc_func import flash_errors
theme = "original"

@app.route("/")
@app.route("/index")
def index():
	return render_template("index.html") 

@app.route("/ContactUs", methods=['GET', 'POST'])
def contact_us():
	form = MyForm()
	if form.validate_on_submit():
		return "Wuhu"
	flash_errors(form)
	return render_template("contact.html",form=form)