aboutsummaryrefslogtreecommitdiff
path: root/contact/forms.py
diff options
context:
space:
mode:
Diffstat (limited to 'contact/forms.py')
-rw-r--r--contact/forms.py7
1 files changed, 7 insertions, 0 deletions
diff --git a/contact/forms.py b/contact/forms.py
new file mode 100644
index 0000000..5c77b29
--- /dev/null
+++ b/contact/forms.py
@@ -0,0 +1,7 @@
1from django import forms
2
3
4class ContactForm(forms.Form):
5 subject = forms.CharField(max_length=100)
6 message = forms.CharField()
7 sender = forms.EmailField()