Changeset 5156 for django/trunk/tests/templates/login.html
- Timestamp:
- 05/07/07 07:34:18 (2 years ago)
- Files:
-
- django/trunk/tests/templates/login.html (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
django/trunk/tests/templates/login.html
r3708 r5156 1 <html> 2 <head></head> 3 <body> 4 <h1>Django Internal Tests: Login</h1> 1 {% extends "base.html" %} 2 {% block title %}Login{% endblock %} 3 {% block content %} 5 4 {% if form.has_errors %} 6 5 <p>Your username and password didn't match. Please try again.</p> … … 16 15 <input type="hidden" name="next" value="{{ next }}" /> 17 16 </form> 18 </body> 19 </html> 17 {% endblock %}
