contact form
This commit is contained in:
parent
e9fad9eabf
commit
d5bd8d2da8
13 changed files with 96 additions and 0 deletions
7
app/contact/forms.py
Normal file
7
app/contact/forms.py
Normal file
|
|
@ -0,0 +1,7 @@
|
|||
from django import forms
|
||||
from django.conf import settings
|
||||
|
||||
class ContactForm(forms.Form):
|
||||
email = forms.EmailField(label='EMail', required=False)
|
||||
message = forms.CharField(label='Message', required=True)
|
||||
|
||||
Loading…
Add table
Add a link
Reference in a new issue