]> gitweb.factorcode.org Git - factor.git/blob - contrib/furnace/tools/search.fhtml
More web framework work
[factor.git] / contrib / furnace / tools / search.fhtml
1 <% USING: help kernel sequences html namespaces io ; %>
2
3 <form action="search" method="get">
4     <h1>Search help</h1>
5     <input type="field" name="terms" />
6     <%
7         "terms" get dup empty? [
8             drop
9         ] [
10             <b> "Results for " write dup write ":" write </b> <br/>
11             search-help.
12         ] if
13     %>
14     <input type="submit" />
15 </form>