X-Git-Url: https://git.mdrn.pl/wolnelektury.git/blobdiff_plain/c3af41ec13e26ad2b4cb000291ff989dc1b3686f..36cca9810221f31c33f69b8a9fd669d590346520:/src/wolnelektury/views.py

diff --git a/src/wolnelektury/views.py b/src/wolnelektury/views.py
index 265f76694..7d6ed2be9 100644
--- a/src/wolnelektury/views.py
+++ b/src/wolnelektury/views.py
@@ -22,6 +22,7 @@ from catalogue.models import Book, Collection, Tag, Fragment
 from ssify import ssi_included
 
 from social.utils import get_or_choose_cite
+from wolnelektury.forms import RegistrationForm
 
 
 def main_page(request):
@@ -83,7 +84,7 @@ class LoginFormView(AjaxableFormView):
 
 
 class RegisterFormView(AjaxableFormView):
-    form_class = UserCreationForm
+    form_class = RegistrationForm
     template = "auth/register.html"
     placeholdize = True
     title = _('Register')