aboutsummaryrefslogtreecommitdiff
path: root/app/dispatchAuth/forms.py
diff options
context:
space:
mode:
Diffstat (limited to 'app/dispatchAuth/forms.py')
-rw-r--r--app/dispatchAuth/forms.py11
1 files changed, 11 insertions, 0 deletions
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