/tests/templates/login.html
https://code.google.com/p/mango-py/ · HTML · 17 lines · 15 code · 2 blank · 0 comment · 0 complexity · db84afc4eccc39ae4fe2e864805444bc MD5 · raw file
- {% extends "base.html" %}
- {% block title %}Login{% endblock %}
- {% block content %}
- {% if form.has_errors %}
- <p>Your username and password didn't match. Please try again.</p>
- {% endif %}
- <form method="post" action=".">
- <table>
- <tr><td><label for="id_username">Username:</label></td><td>{{ form.username }}</td></tr>
- <tr><td><label for="id_password">Password:</label></td><td>{{ form.password }}</td></tr>
- </table>
- <input type="submit" value="login" />
- <input type="hidden" name="next" value="{{ next }}" />
- </form>
- {% endblock %}