Added mini blogging application as Flask example.

This should become the tutorial.
This commit is contained in:
Armin Ronacher 2010-04-14 16:44:29 +02:00
parent 2d9bb69272
commit c33675f025
7 changed files with 241 additions and 0 deletions

View file

@ -0,0 +1,14 @@
{% extends "layout.html" %}
{% block body %}
<h2>Login</h2>
{% if error %}<p class=error><strong>Error:</strong> {{ error }}{% endif %}
<form action="{{ url_for('login') }}" method=post>
<dl>
<dt>Username:
<dd><input type=text name=username>
<dt>Password:
<dd><input type=passowrd name=password>
<dd><input type=submit value=Login>
</dl>
</form>
{% endblock %}