adding login views

This commit is contained in:
John Jarvis
2013-01-17 11:52:58 -05:00
parent ed39ca2303
commit 9af7c6cc5d
4 changed files with 29 additions and 15 deletions

View File

@@ -1,10 +1,6 @@
<%inherit file="main.html" />
<%namespace name='static' file='static_content.html'/>
<%block name="title"><title>login</title></%block>
<%block name="title"><title>Login</title></%block>
<section class="container login">
</section>
Hello world

View File

@@ -0,0 +1,7 @@
<%inherit file="main.html" />
<%namespace name='static' file='static_content.html'/>
<%block name="title"><title>register</title></%block>
Hello world

View File

@@ -15,6 +15,8 @@ urlpatterns = ('',
url(r'^update_certificate$', 'certificates.views.update_certificate'),
url(r'^$', 'branding.views.index', name="root"), # Main marketing page, or redirect to courseware
url(r'^dashboard$', 'student.views.dashboard', name="dashboard"),
url(r'^login$', 'student.views.login', name="login"),
url(r'^register$', 'student.views.register', name="register"),
url(r'^admin_dashboard$', 'dashboard.views.dashboard'),