2020-11-15 15:52:14 -03:00
|
|
|
from django import forms
|
|
|
|
|
|
|
|
class FormContacto(forms.Form):
|
2020-11-15 19:15:22 -03:00
|
|
|
asunto = forms.CharField(max_length=35, required=False, initial='Contacto')
|
|
|
|
email = forms.EmailField(max_length=35)
|
|
|
|
msj = forms.CharField(widget=forms.Textarea(attrs={'rows': 5, 'cols': 26}))
|