bundled/flask/examples/flaskr/templates/login.html @ 3c3734c184d9
Use revsets to find newer and older cset of the current changeset. With obsolescence markers enabled, rev numbers are not linear
| author | Christophe de Vienne <cdevienne@gmail.com> |
|---|---|
| date | Mon, 27 Oct 2014 22:38:16 +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 %}