-<html>
- <head>
- <title>Create account</title></head>
- <body>
- <h1>Create account</h1>
- <form enctype="multipart/form-data" action="/newuser/" method="post">
- {{ cform.as_p }}
- <input type="submit" value="Submit" />
- </form>
- </body>
-</html>
\ No newline at end of file
+{% extends "base.html" %}
+
+{% block content %}
+ <h1 class="pagetitle">Create account</h1>
+ <form enctype="multipart/form-data" action="{% url signup %}" method="post" class="cssform">
+ {{ cform.as_p }}
+ <input type="submit" value="Submit" />
+ </form>
+{% endblock %}
\ No newline at end of file