templates/user/login.html
author anoop
Thu, 04 Feb 2010 23:13:03 +0530
changeset 24 fcae44e94845
parent 13 0fb64b24a1c9
permissions -rw-r--r--
added files edit_profile.html and my_profile.html.

{% extends 'base.html' %}
{% block content %}
<form action="/accounts/login/" method="post">
    {{ form.as_p }}

{% if errors %}
    <p style="color: red;">
        Please correct the error{{ errors|pluralize }} below.
        {% for i in errors %}
            <br>{{ i }}
        {% endfor %}
    </p>
{% endif %}

<input type="submit" value="Submit" />
</form>
{% endblock %}