mamweb/seminar/forms.py
2019-05-11 01:15:05 +02:00

6 lines
120 B
Python

from django import forms
class NameForm(forms.Form):
your_name = forms.CharField(label='Your name', max_length=100)