added an error page for "you are not logged in"
[~kgodey/maayanwich.git] / templates / pleaselogin.html
1 {% extends "base.html" %}
2
3 {% block content %}
4         <h3 class="error">You are not logged in.</h3>
5         <h1 class="pagetitle">Login</h1>
6         <form enctype="multipart/form-data" action="{% url login2 %}" method="post" class="cssform">
7         {{ aform.as_p }}
8         <input type="submit" value="Submit" />
9         </form>
10 {% endblock %}