Chapter 4

This commit is contained in:
2023-06-03 16:59:29 +02:00
parent c640e3ca82
commit f9020e921f
16 changed files with 396 additions and 0 deletions

27
app/routes.py Normal file
View File

@@ -0,0 +1,27 @@
from flask import render_template, flash, redirect, url_for
from app import app
from app.forms import LoginForm
@app.route("/")
@app.route("/index")
def index():
user = {"username": "Miguel"}
posts = [
{"author": {"username": "John"}, "body": "Beautiful day in Portland!"},
{"author": {"username": "Susan"}, "body": "The Avengers movie was so cool!"},
]
return render_template("index.html", title="Home", user=user, posts=posts)
@app.route("/login", methods=["GET", "POST"])
def login():
form = LoginForm()
if form.validate_on_submit():
flash(
"Login requested for user {}, remember_me={}".format(
form.username.data, form.remember_me.data
)
)
return redirect(url_for("index"))
return render_template("login.html", title="Sign In", form=form)