+forms.py forms api

This commit is contained in:
jp.av.dev 2020-11-15 15:52:14 -03:00
parent 3119a25533
commit 75325d5894

View File

@ -0,0 +1,7 @@
from django import forms
class FormContacto(forms.Form):
asunto = forms.CharField()
email = forms.EmailField()
msj = forms.CharField()