jsolow's picture
add-django (#2)
f4da933
raw
history blame
343 Bytes
from django import forms
class URLInputForm(forms.Form):
post = forms.URLField(label="Paste image url here:")
label = forms.CharField(label="Type of Food:", required=False)
class ImageUploadForm(forms.Form):
img = forms.ImageField(label="User uploaded image")
label = forms.CharField(label="Type of Food:", required=False)