X-Git-Url: https://git.openstreetmap.org./osqa.git/blobdiff_plain/8a6bfd84137635211aa15f3991aa681c37d4cb6e..1157280cd8ff44da57a37dfc2f5920e53180f6b4:/forum/forms/auth.py diff --git a/forum/forms/auth.py b/forum/forms/auth.py index 9bf2d67..0d07ce8 100644 --- a/forum/forms/auth.py +++ b/forum/forms/auth.py @@ -1,4 +1,4 @@ -from general import NextUrlField, UserNameField, UserEmailField, SetPasswordForm +from general import NextUrlField, UserNameField, UserEmailField, UserRealNameField, SetPasswordForm from forum.models import Question, User from django.contrib.contenttypes.models import ContentType from django.utils.translation import ugettext as _ @@ -10,6 +10,7 @@ class SimpleRegistrationForm(forms.Form): next = NextUrlField() username = UserNameField() email = UserEmailField() + real_name = UserRealNameField() class TemporaryLoginRequestForm(forms.Form): def __init__(self, data=None):