bundled/flask/examples/flaskr/templates/login.html @ 638009474a3b
api: Don't crash if the diff has no lines (in case of merge for instance)
| author | Benoît Allard <benoit@aeteurope.nl> |
|---|---|
| date | Mon, 23 Jan 2012 15:01:27 +0100 |
| parents | f33efe14bff1 |
| 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 %}