URLs all read from urls.py file now, no hardcoded URLs
[~kgodey/maayanwich.git] / templates / login.html
1 {% extends "base.html" %}
2
3 {% block content %}
4         <h1 class="pagetitle">Login</h1>
5         <form enctype="multipart/form-data" action="{% url login %}" method="post">
6         {{ aform.as_p }}
7         <input type="submit" value="Submit" />
8         </form>
9 {% endblock %}