diff options
author | Thomas Pointhuber <thomas.pointhuber@gmx.at> | 2014-03-06 16:37:25 +0100 |
---|---|---|
committer | Thomas Pointhuber <thomas.pointhuber@gmx.at> | 2014-03-06 16:37:25 +0100 |
commit | 2fe2af71588c5040fc27385e83c5ec3d57ebf7b3 (patch) | |
tree | d3321a785287cd7d346a97cb77fcddaf6697cf7d /searx | |
parent | 3b31c60f07dbc5b6e240295885b672e46b1583bd (diff) | |
download | searxng-2fe2af71588c5040fc27385e83c5ec3d57ebf7b3.tar.gz searxng-2fe2af71588c5040fc27385e83c5ec3d57ebf7b3.zip |
Adding placeholder in search-field
Diffstat (limited to 'searx')
-rw-r--r-- | searx/templates/search.html | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/searx/templates/search.html b/searx/templates/search.html index 270d350ac..95e312e5a 100644 --- 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' %} |