Added an index instead of "all sandwiches", made custom titles for every page.
[~kgodey/maayanwich.git] / templates / newuser.html
1 {% extends "base.html" %}
2
3 {% block title %}Create account{% endblock %}
4
5 {% block content %}
6         <h1 class="pagetitle">Create account</h1>
7         <form enctype="multipart/form-data" action="{% url signup %}" method="post" class="cssform">
8         {{ aform.as_p }}
9         <input type="submit" value="Submit" />
10         </form>
11 {% endblock %}