bundled/flask/examples/flaskr/templates/login.html @ f33efe14bff1
bundled: update flask
| author | Steve Losh <steve@stevelosh.com> |
|---|---|
| date | Thu, 27 Jan 2011 18:23:59 -0500 |
| parents | (none) |
| children | (none) |
{% 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=password name=password> <dd><input type=submit value=Login> </dl> </form> {% endblock %}