Forms can be defined, in a similar manner to models, by subclassing django.forms.Form.
Various field input options are available such as CharField, URLField, IntegerField, etc.
Defining a simple contact form can be seen below:
from django import forms
class ContactForm(forms.Form):
contac...