witten
/
luminotes
Archived
1
0
Fork 0
This repository has been archived on 2023-12-16. You can view files and clone it, but cannot push or open issues or pull requests.
luminotes/view/Search_form.py

17 lines
328 B
Python

from Tags import Form, Input
class Search_form( Form ):
def __init__( self ):
title = None
Form.__init__(
self,
Input(
type = u"text", name = u"search_text", id = u"search_text",
maxlength = 512, value = "search",
autocomplete = u"off",
),
id = u"search_form",
)