passion_retro/guestbook/forms.py
2025-09-12 11:11:44 +02:00

12 lines
No EOL
321 B
Python
Executable file

from django import forms
class CreateGuestbook(forms.Form):
author = forms.CharField(
max_length=150,
label='',
widget=forms.TextInput(attrs={'placeholder': 'Nom'})
)
content = forms.CharField(
label='',
widget=forms.Textarea(attrs={'placeholder': 'Message'})
)