making html forms work in django app code example
Example: using html forms in django
from django import forms
class NameForm(forms.Form):
your_name = forms.CharField(label='Your name', max_length=100)
from django import forms
class NameForm(forms.Form):
your_name = forms.CharField(label='Your name', max_length=100)