1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88
|
<dtml-comment >
<!-- version : $Revision: 1.2 $
author : Butch Landingin
copyright (c) 1999 by Butch Landingin
see License.txt for restrictions on distribution, use
and modifications.
-->
</dtml-comment>
<dtml-var standard_html_header>
<H2>Search</H2>
<P>
<FORM ACTION="./search" METHOD="POST">
<TABLE BORDER="1">
<TR>
<TD BGCOLOR="#EFEFEF" ALIGN="LEFT" VALIGN="TOP">
<A HREF="./index_html">Return to Topic</A>
</TD>
<TD BGCOLOR="#EFEFEF" ALIGN="LEFT" VALIGN="TOP">
Search Help
</TD>
</TR>
</TABLE>
<dtml-if has_items>
<TABLE>
<TR>
<TD ALIGN="LEFT" VALIGN="TOP">
<BR>
<STRONG>Search for</STRONG>
</TD>
<TD ALIGN="LEFT" VALIGN="TOP">
<BR>
<INPUT NAME="body" TYPE="TEXT" SIZE="16">
</TD>
</TR>
<TR>
<TD ALIGN="LEFT" VALIGN="TOP">
<BR>
<EM><STRONG>by title</STRONG></EM>
</TD>
<TD ALIGN="LEFT" VALIGN="TOP">
<BR>
<INPUT NAME="title" TYPE="TEXT" SIZE="16">
</TD>
</TR>
<TR>
<TD ALIGN="LEFT" VALIGN="TOP">
<EM><STRONG>by subject</STRONG></EM>
</TD>
<TD ALIGN="LEFT" VALIGN="TOP">
<dtml-if has_subjects>
<SELECT NAME="subject">
<OPTION VALUE="" SELECTED>
<dtml-in subjects_list>
<OPTION VALUE="<dtml-var sequence-item html_quote>"><dtml-var sequence-item>
</dtml-in subjects_list>
</SELECT>
<dtml-else>
<INPUT TYPE="TEXT" NAME="subject" VALUE="" SIZE="16">
</dtml-if has_subjects>
</TD>
</TR>
<TR>
<TD ALIGN="LEFT" VALIGN="TOP">
<EM><STRONG>by author</STRONG></EM>
</TD>
<TD ALIGN="LEFT" VALIGN="TOP">
<INPUT NAME="author" TYPE="TEXT" SIZE="16">
</TD>
</TR>
<TR>
<TD></TD>
<TD ALIGN="LEFT" VALIGN="TOP">
<INPUT TYPE="SUBMIT" VALUE="Search">
</TD>
</TR>
</TABLE>
<dtml-else has_items>
<EM>There are currently no messages to search.</EM>
</dtml-if has_items>
</FORM>
<p><a href="http://squishdot.org"><img src="&dtml-site_url;/<dtml-var squishlogo>" alt="Squishdot Powered" border=1 height=50 width=75></a>
<dtml-var standard_html_footer>
|