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 %}
<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>
<dt>Username:</dt>
<dd><input type=text name=username></input>
<dt>Password:</dt>
<dd><input type=password name=password></input>
<dd><input type=submit value=Login></input>
</dl>
</form>
{% endblock %}