mirror of
https://github.com/taroved/pol
synced 2025-05-18 07:10:09 -07:00
6 lines
183 B
Python
6 lines
183 B
Python
from django import forms
|
|
|
|
|
|
class IndexForm(forms.Form):
|
|
url = forms.CharField(max_length=2000, widget=forms.TextInput(attrs={'class': 'input-xxlarge', 'placeholder': 'http://'}))
|