logo

searx

My custom branche(s) on searx, a meta-search engine git clone https://hacktivis.me/git/searx.git
commit: 2fe2af71588c5040fc27385e83c5ec3d57ebf7b3
parent 3b31c60f07dbc5b6e240295885b672e46b1583bd
Author: Thomas Pointhuber <thomas.pointhuber@gmx.at>
Date:   Thu,  6 Mar 2014 16:37:25 +0100

Adding placeholder in search-field

Diffstat:

Msearx/templates/search.html2+-
1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/searx/templates/search.html b/searx/templates/search.html @@ -1,6 +1,6 @@ <form method="post" action="{{ url_for('index') }}" id="search_form"> <div id="search_wrapper"> - <input type="text" id="q" class="q" name="q" tabindex="1" autocomplete="off" {% if q %}value="{{ q }}"{% endif %}/> + <input type="text" placeholder="{{ _('Search for...') }}" id="q" class="q" name="q" tabindex="1" autocomplete="off" {% if q %}value="{{ q }}"{% endif %}/> <input type="submit" value="search" id="search_submit" /> </div> {% include 'categories.html' %}