Started working on the skeleton of an actual website. Created barebones templates...
[~kgodey/maayanwich.git] / templates / newuser.html
index fb53041..fcba9c3 100644 (file)
@@ -1,11 +1,9 @@
-<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="/newuser/" method="post">
+       {{ cform.as_p }}
+       <input type="submit" value="Submit" />
+       </form>
+{% endblock %}
\ No newline at end of file