Welcome to the Treehouse Community

Want to collaborate on code errors? Have bugs you need feedback on? Looking for an extra set of eyes on your latest project? Get support with fellow developers, designers, and programmers of all backgrounds and skill levels here with the Treehouse Community! While you're at it, check out some resources Treehouse students have shared here.

Looking to learn something new?

Treehouse offers a seven day free trial for new students. Get access to thousands of hours of content and join thousands of Treehouse students and alumni in the community today.

Start your free trial

Python

Is there any way to let users sign up with a certain email or name?

Is there any way to let users sign up with a certain email or name in in python?

1 Answer

Hi askariabdurrahman

you can do it in django.

from django import forms

class YourForm(forms.Form):
    email = forms.EmailField()
    ...

    def clean_recipients(self):
        data = self.cleaned_data['email']
        if "emailyouwant@example.com" not in data:
            raise forms.ValidationError("You must only login with this address")

        return data

Thanks!