use html5 placeholder and hide labels,
[wolnelektury.git] / wolnelektury / views.py
index f2d9abd..555b732 100755 (executable)
@@ -14,6 +14,7 @@ from django.views.decorators.cache import never_cache
 from django.conf import settings
 from ajaxable.utils import AjaxableFormView
 from catalogue.models import Book
+from ajaxable.utils import placeholdized
 
 
 def main_page(request):
@@ -25,9 +26,10 @@ def main_page(request):
 
 class LoginFormView(AjaxableFormView):
     form_class = AuthenticationForm
-    #template = "auth/login.html"
+    placeholdize = True
     title = _('Sign in')
     submit = _('Sign in')
+    ajax_redirect = True
 
     def __call__(self, request):
         if request.user.is_authenticated():
@@ -40,9 +42,11 @@ class LoginFormView(AjaxableFormView):
 
 class RegisterFormView(AjaxableFormView):
     form_class = UserCreationForm
-    #template = "auth/register.html"
+    placeholdize = True
     title = _('Register')
     submit = _('Register')
+    ajax_redirect = True
+    form_prefix = 'register'
 
     def __call__(self, request):
         if request.user.is_authenticated():
@@ -50,7 +54,7 @@ class RegisterFormView(AjaxableFormView):
         return super(RegisterFormView, self).__call__(request)
 
     def success(self, form, request):
-        user = form.save()
+        form.save()
         user = auth.authenticate(
             username=form.cleaned_data['username'],
             password=form.cleaned_data['password1']
@@ -58,6 +62,17 @@ class RegisterFormView(AjaxableFormView):
         auth.login(request, user)
 
 
+class LoginRegisterFormView(LoginFormView):
+    template = 'auth/login_register.html'
+    title = _('You have to be logged in to continue')
+
+    def extra_context(self):
+        return {
+            "register_form": placeholdized(UserCreationForm(prefix='register')),
+            "register_submit": _('Register'),
+        }
+
+
 @never_cache
 def logout_then_redirect(request):
     auth.logout(request)