920e7669dc
The beta access form is now in it's own html page. this makes it easier to work with djangos form validation with reloading the whole page.
12 lines
428 B
Python
12 lines
428 B
Python
from django.conf.urls import url
|
|
|
|
from .views import IndexView, BetaProgramView, LandingProgramView, \
|
|
BetaAccessView
|
|
|
|
|
|
urlpatterns = [
|
|
url(r'^/?$', IndexView.as_view(), name='index'),
|
|
url(r'^/beta-program/?$', BetaProgramView.as_view(), name='beta'),
|
|
url(r'^/landing/?$', LandingProgramView.as_view(), name='landing'),
|
|
url(r'^/beta_access?$', BetaAccessView.as_view(), name='beta_access'),
|
|
]
|