From deb4940de38c68ee1e0bc2977baad090814348d9 Mon Sep 17 00:00:00 2001 From: Sanj Date: Fri, 28 Oct 2011 15:08:13 +0100 Subject: [PATCH] added signup --- mofca/organic/views.py | 3 +++ mofca/templates/signup.html | 1 + mofca/urls.py | 1 + 3 files changed, 5 insertions(+) create mode 100644 mofca/templates/signup.html diff --git a/mofca/organic/views.py b/mofca/organic/views.py index 7881a63..e4aad9d 100644 --- a/mofca/organic/views.py +++ b/mofca/organic/views.py @@ -21,3 +21,6 @@ def about(request): def contact(request): return render_to_response("contact.html") + +def signup(request): + return render_to_response("signup.html") diff --git a/mofca/templates/signup.html b/mofca/templates/signup.html new file mode 100644 index 0000000..21f5da2 --- /dev/null +++ b/mofca/templates/signup.html @@ -0,0 +1 @@ +{% extends 'base.html' %} diff --git a/mofca/urls.py b/mofca/urls.py index 769ba2d..df31e21 100644 --- a/mofca/urls.py +++ b/mofca/urls.py @@ -18,6 +18,7 @@ urlpatterns = patterns('', (r'^recipes/$', 'recipes.views.index'), (r'^about/$', 'organic.views.about'), (r'^contact/$', 'organic.views.contact'), + (r'^signup/$', 'organic.views.signup'), # (r'^events/$', 'organic.views.events'), # (r'^resources/$', 'organic.views.resources'), # Uncomment the admin/doc line below to enable admin documentation: