aboutsummaryrefslogtreecommitdiff
path: root/accounts/forms.py
diff options
context:
space:
mode:
authorMike Crute <mcrute@gmail.com>2012-12-04 16:44:28 -0500
committerMike Crute <mcrute@gmail.com>2012-12-20 22:00:11 -0500
commitce3b9091f080c2a33a60d23af99de3222e570024 (patch)
tree68e7a84b800e6d91ffe26d48e31e34aa88ce64d3 /accounts/forms.py
parentbd95993653a1b94d07316e24a0f519d00f9359d6 (diff)
downloaddjango-precompiler-ce3b9091f080c2a33a60d23af99de3222e570024.tar.bz2
django-precompiler-ce3b9091f080c2a33a60d23af99de3222e570024.tar.xz
django-precompiler-ce3b9091f080c2a33a60d23af99de3222e570024.zip
User can create account
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")