Commit a68a7faa authored by Michal Čihař's avatar Michal Čihař

Add mail/name

parent c77e1f70
...@@ -23,6 +23,8 @@ class UserForm(forms.ModelForm): ...@@ -23,6 +23,8 @@ class UserForm(forms.ModelForm):
class ContactForm(forms.Form): class ContactForm(forms.Form):
subject = forms.CharField(label = _('Subject'), required = True) subject = forms.CharField(label = _('Subject'), required = True)
name = forms.CharField(label = _('Your name'), required = True)
email = forms.EmailField(label = _('Your email'), required = True)
message = forms.CharField( message = forms.CharField(
label = _('Message'), label = _('Message'),
required = True, required = True,
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment