mamweb/seminar/forms.py

7 lines
120 B
Python
Raw Normal View History

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