mirror of
https://github.com/Marketscrape/marketscrape-web.git
synced 2025-12-23 22:17:56 -05:00
8 lines
257 B
Python
8 lines
257 B
Python
from django import forms
|
|
|
|
class MarketForm(forms.Form):
|
|
url = forms.URLField(label=False, widget=forms.TextInput(attrs={
|
|
'class': 'form-control',
|
|
'placeholder': 'Enter a Facebook Marketplace URL...',
|
|
'autocomplete': 'off'
|
|
})) |