Change border-color if contact field is empty

The conact modals where moved in seperated templates. Further to
evaluate the form without reloading the page some ajax was added.
This commit is contained in:
Modulos 2017-04-12 11:17:03 +02:00
commit ef8ae14582
6 changed files with 104 additions and 72 deletions

View file

@ -1,11 +1,12 @@
from django.conf.urls import url
from .views import IndexView, LoginView
from .views import IndexView, LoginView, ContactView
urlpatterns = [
url(r'^/?$', IndexView.as_view(), name='index'),
url(r'/login/', LoginView.as_view(), name='login'),
url(r'/contact', ContactView.as_view(), name='contact'),
# url(r'^/beta-program/?$', BetaProgramView.as_view(), name='beta'),
# url(r'^/landing/?$', LandingProgramView.as_view(), name='landing'),
]