12 lines
252 B
Python
12 lines
252 B
Python
|
from django import forms
|
||
|
|
||
|
class searchForm(forms.Form):
|
||
|
phrase = forms.CharField(
|
||
|
max_length = 200,
|
||
|
widget= forms.TextInput(attrs={
|
||
|
"class": "search_form",
|
||
|
"placeholder": "Serach IDDRS...."
|
||
|
})
|
||
|
)
|
||
|
|