aboutsummaryrefslogtreecommitdiff
path: root/templates
diff options
context:
space:
mode:
authorJoey Hess <joey@kitenet.net>2010-05-02 13:49:56 -0400
committerJoey Hess <joey@kitenet.net>2010-05-02 13:49:56 -0400
commitb21df5029b94c5680d8a3e5f0c1ed40a660a1594 (patch)
treeea68a4c4a2657119a00a0f55f434bd034a89ee79 /templates
parent970373548fda77223ebbeb6aadbdbe4884b67cef (diff)
downloadikiwiki-b21df5029b94c5680d8a3e5f0c1ed40a660a1594.tar
ikiwiki-b21df5029b94c5680d8a3e5f0c1ed40a660a1594.tar.gz
Add placeholder text in search form (in html5 mode only).
Diffstat (limited to 'templates')
-rw-r--r--templates/googleform.tmpl3
-rw-r--r--templates/searchform.tmpl3
2 files changed, 4 insertions, 2 deletions
diff --git a/templates/googleform.tmpl b/templates/googleform.tmpl
index bcf1004a4..f39b46540 100644
--- a/templates/googleform.tmpl
+++ b/templates/googleform.tmpl
@@ -1,6 +1,7 @@
<form method="get" action="http://www.google.com/search" id="searchform">
<div>
<input name="sitesearch" value="<TMPL_VAR URL>" type="hidden" />
- <input name="q" value="" id="searchbox" size="16" maxlength="255" type="text" />
+ <input name="q" value="" id="searchbox" size="16" maxlength="255" type="text"
+ <TMPL_IF HTML5>placeholder="search"</TMPL_IF> />
</div>
</form>
diff --git a/templates/searchform.tmpl b/templates/searchform.tmpl
index afae2ebf5..cb65d124c 100644
--- a/templates/searchform.tmpl
+++ b/templates/searchform.tmpl
@@ -1,5 +1,6 @@
<form method="get" action="<TMPL_VAR SEARCHACTION>" id="searchform">
<div>
-<input type="text" id="searchbox" name="P" value="" size="16" />
+<input type="text" id="searchbox" name="P" value="" size="16"
+<TMPL_IF HTML5>placeholder="search"</TMPL_IF> />
</div>
</form>