aboutsummaryrefslogtreecommitdiff
path: root/accounts/forms.py
diff options
context:
space:
mode:
Diffstat (limited to 'accounts/forms.py')
-rw-r--r--accounts/forms.py7
1 files changed, 7 insertions, 0 deletions
diff --git a/accounts/forms.py b/accounts/forms.py
new file mode 100644
index 0000000..abdab79
--- /dev/null
+++ b/accounts/forms.py
@@ -0,0 +1,7 @@
1from django.contrib.auth.forms import UserCreationForm as _UserForm
2
3
4class UserCreationForm(_UserForm):
5
6 class Meta(_UserForm.Meta):
7 fields = ("username", "email")