feat: added tpv app

This commit is contained in:
Pablo Moreno
2024-03-22 00:44:49 +01:00
parent a13eb6c9d9
commit b8562b3d7b
27 changed files with 1153 additions and 7 deletions
+14
View File
@@ -0,0 +1,14 @@
from django import forms
from django.utils.text import gettext_lazy as _
class UpdateEmailForm(forms.Form):
contact_email = forms.EmailField(
label=_("Introduce tu e-mail"),
required=True,
widget=forms.EmailInput(
attrs={
"class": "peer bg-green-50 border border-green-500 text-green-900 light:text-green-400 placeholder-green-700 light:placeholder-green-500 text-sm rounded-lg focus:ring-green-500 focus:border-green-500 block w-full p-2.5 light:bg-gray-700 light:border-green-500"
}
),
)