Changeset 5734 for django/branches/schema-evolution/tests/templates
- Timestamp:
- 07/20/07 15:49:49 (1 year ago)
- Files:
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
django/branches/schema-evolution/tests/templates/login.html
r3937 r5734 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 %}
