From f4fc1a9e830ccd2aff3cc82468ee47b2f0e8b448 Mon Sep 17 00:00:00 2001 From: Navan Chauhan Date: Thu, 3 Jun 2021 22:44:24 +0530 Subject: added view manager --- app/views/main.py | 26 ++++++++++++++++++++++++++ 1 file changed, 26 insertions(+) create mode 100644 app/views/main.py (limited to 'app/views/main.py') diff --git a/app/views/main.py b/app/views/main.py new file mode 100644 index 0000000..15f7db9 --- /dev/null +++ b/app/views/main.py @@ -0,0 +1,26 @@ +from app import app +from app.forms.app_forms import MyForm +from flask import render_template, flash + +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) + +def flash_errors(form): + for field, errors in form.errors.items(): + for error in errors: + flash(u"Error in the %s field - %s" % ( + getattr(form, field).label.text, + error + ), 'danger') \ No newline at end of file -- cgit v1.2.3