24 lines
638 B
Python
24 lines
638 B
Python
from django import forms
|
|
|
|
class ContactMe(forms.Form):
|
|
customer_name = forms.CharField(
|
|
label="Your name",
|
|
max_length=100,
|
|
widget=forms.TextInput(attrs={'placeholder': 'Enter your name'})
|
|
)
|
|
customer_email = forms.EmailField(
|
|
label="Your email",
|
|
widget=forms.EmailInput(
|
|
attrs={'placeholder': 'Enter email'}
|
|
)
|
|
)
|
|
message = forms.CharField(
|
|
label="Message",
|
|
widget=forms.Textarea(
|
|
attrs={
|
|
'rows': 4,
|
|
'cols': 50,
|
|
'placeholder': 'Type your message here...'
|
|
}
|
|
)
|
|
) |