X-Git-Url: http://git.ithinksw.org/~kgodey/maayanwich.git/blobdiff_plain/d4c7020dea9dfb1de97b9048b70d168c52022d79..2d13c64cccabf18b2ee17dac2f0c54280edd9327:/forms.py diff --git a/forms.py b/forms.py index cd81af2..380f6a4 100644 --- a/forms.py +++ b/forms.py @@ -15,4 +15,13 @@ class IngredientForm(ModelForm): class Meta: model = Ingredient - exclude = ('slug',) \ No newline at end of file + exclude = ('slug',) + + +class NewUserForm(forms.Form): + first_name = forms.CharField() + last_name = forms.CharField() + email = forms.EmailField() + username = forms.CharField() + password = forms.CharField(widget=forms.PasswordInput) + confirm_password = forms.CharField(widget=forms.PasswordInput)