From 69d5a098f830128414f178d9382c65221f06e4bb Mon Sep 17 00:00:00 2001 From: Mitch Riedstra Date: Fri, 10 Nov 2017 15:25:29 -0500 Subject: Initial version of registration system--needs work --- app/dispatchAuth/forms.py | 11 +++++++++++ 1 file changed, 11 insertions(+) create mode 100644 app/dispatchAuth/forms.py (limited to 'app/dispatchAuth/forms.py') diff --git a/app/dispatchAuth/forms.py b/app/dispatchAuth/forms.py new file mode 100644 index 0000000..99781f7 --- /dev/null +++ b/app/dispatchAuth/forms.py @@ -0,0 +1,11 @@ +from registration.forms import RegistrationForm +from .models import User + + +class UserForm(RegistrationForm): + # fields = ['email', 'first_name', 'last_name'] + # model = User + + class Meta: + fields = ['email', 'first_name', 'last_name'] + model = User -- cgit v1.2.3