This repository has been archived on 2023-01-02. You can view files and clone it, but cannot push or open issues or pull requests.
django-pyvows/sandbox/main/forms.py
2015-07-19 12:20:37 +02:00

6 lines
137 B
Python

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