Require login for bloog contact form
I don't like that almost anyone could post a message via the contact form, so I made obligatory to be logged before anyone could send a contact request.
with app engine is as easy as mark the next request as login required in the app.yaml with the next lines:
- url: /contact
script: main.py
login: required
As usual in this file, the order of the patterns ...