From fc5ad68e62bd2b82450cdbdd3c83f8c1e94feed2 Mon Sep 17 00:00:00 2001 From: Mike Crute Date: Tue, 4 Dec 2012 15:50:42 -0500 Subject: Add contact form --- contact/forms.py | 7 +++++++ 1 file changed, 7 insertions(+) create mode 100644 contact/forms.py (limited to 'contact/forms.py') 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 @@ +from django import forms + + +class ContactForm(forms.Form): + subject = forms.CharField(max_length=100) + message = forms.CharField() + sender = forms.EmailField() -- cgit v1.2.3