First Commit

This commit is contained in:
mrtoine 2025-09-12 11:11:44 +02:00
commit ce0758fbbb
496 changed files with 52062 additions and 0 deletions

12
guestbook/forms.py Executable file
View file

@ -0,0 +1,12 @@
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'})
)