phantasma/app/contact/forms.py
2021-10-26 16:47:06 +01:00

7 lines
213 B
Python

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)