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

14 lines
409 B
Python

from Tags import Form, Strong, Input
class Search_form( Form ):
def __init__( self ):
title = None
Form.__init__(
self,
Input( type = u"button", class_ = u"note_button", id = u"search_button", value = u"search ↓", title = "search options" ),
Input( type = u"text", name = u"search_text", id = u"search_text", size = 30, maxlength = 100 ),
id = u"search_form",
)