# Copyright © Fundacja Nowoczesna Polska. See NOTICE for more information.
 #
 from django import forms
+from django.utils.translation import ugettext as _
+from django.contrib.auth.models import User
 
 
 class RegistrationForm(forms.Form):
     last_name = forms.CharField()
     email = forms.EmailField()
     password = forms.CharField(widget=forms.PasswordInput)
+
+    def clean_email(self):
+        max_length = User._meta.get_field('username').max_length
+        email = self.cleaned_data['email']
+        if User.objects.filter(username=email).exists():
+            raise forms.ValidationError(_('User with this email address already exists.'))
+        if len(email) > max_length:
+            raise forms.ValidationError(_('Username too long. Max length: %s') % max_length)
+        return email