7 lines
123 B
Python
7 lines
123 B
Python
|
from django import forms
|
||
|
|
||
|
class NameForm(forms.Form):
|
||
|
your_name = forms.CharField(label='Your name', max_length=100)
|
||
|
|
||
|
|