Django Forms

Complete the following Django form to include:

  • A subject with a maximum length of 100 characters
  • An optional, boolean, cc_myself field
  • A sender field that will be validated as a correctly formatted email address
from django import forms

class ContactForm(forms.Form):
    message = forms.CharField()