Created
April 12, 2016 16:31
-
-
Save devStepsize/044e5a80e92a02e3a1c631da34142d3c to your computer and use it in GitHub Desktop.
Simple form handling with Django
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
from django import forms | |
class BandContactForm(forms.Form): | |
subject = forms.CharField(max_length=100) | |
message = forms.CharField() | |
sender = forms.EmailField() | |
cc_myself = forms.BooleanField(required=False) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment