Added an index instead of "all sandwiches", made custom titles for every page.
[~kgodey/maayanwich.git] / templates / pleaselogin.html
1 {% extends "base.html" %}
2
3 {% block title %}Please login!{% endblock %}
4
5 {% block content %}
6         <h3 class="error">You are not logged in.</h3>
7         <h1 class="pagetitle">Login</h1>
8         <form enctype="multipart/form-data" action="{% url login2 %}" method="post" class="cssform">
9         {{ aform.as_p }}
10         <input type="submit" value="Submit" />
11         </form>
12 {% endblock %}