Added missing closing tags for the login.html template

This commit is contained in:
Matthew Rankin 2010-12-30 06:44:04 -06:00
parent e687f8333a
commit 8421c1ea0c

View file

@ -99,11 +99,11 @@ the user to login:
{% if error %}<p class=error><strong>Error:</strong> {{ error }}{% endif %} {% if error %}<p class=error><strong>Error:</strong> {{ error }}{% endif %}
<form action="{{ url_for('login') }}" method=post> <form action="{{ url_for('login') }}" method=post>
<dl> <dl>
<dt>Username: <dt>Username:</dt>
<dd><input type=text name=username> <dd><input type=text name=username></input>
<dt>Password: <dt>Password:</dt>
<dd><input type=password name=password> <dd><input type=password name=password></input>
<dd><input type=submit value=Login> <dd><input type=submit value=Login></input>
</dl> </dl>
</form> </form>
{% endblock %} {% endblock %}