summaryrefslogtreecommitdiffstats
path: root/frest/auth/forms.py
diff options
context:
space:
mode:
authorSanto Cariotti <dcariotti24@gmail.com>2020-03-20 10:11:03 +0000
committerSanto Cariotti <dcariotti24@gmail.com>2020-03-20 10:11:03 +0000
commita79bca799a5830b035df818d7e87425c25d081df (patch)
tree2089b30b66f0022cae889cb7739860dc143d5314 /frest/auth/forms.py
parent6f3c1d94a6a8858369256b63cec90d42d61706ae (diff)
chore: move frest dir into src
Diffstat (limited to 'frest/auth/forms.py')
-rw-r--r--frest/auth/forms.py10
1 files changed, 0 insertions, 10 deletions
diff --git a/frest/auth/forms.py b/frest/auth/forms.py
deleted file mode 100644
index abc2f49..0000000
--- a/frest/auth/forms.py
+++ /dev/null
@@ -1,10 +0,0 @@
-from .models import User
-from forms import ModelForm
-
-
-class UserForm(ModelForm):
- model = User
-
- def __init__(self, data):
- super().__init__(self.model)
- self.data = data