adding login views
This commit is contained in:
@@ -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
|
||||
|
||||
7
lms/templates/register.html
Normal file
7
lms/templates/register.html
Normal 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
|
||||
|
||||
@@ -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'),
|
||||
|
||||
|
||||
Reference in New Issue
Block a user