mamweb/seminar/forms.py

7 lines
123 B
Python
Raw Normal View History

2018-12-05 23:38:41 +01:00
from django import forms
class NameForm(forms.Form):
your_name = forms.CharField(label='Your name', max_length=100)