mirror of
https://github.com/EGroupware/egroupware.git
synced 2024-11-18 22:13:39 +01:00
13 lines
853 B
XML
13 lines
853 B
XML
<!-- $Id$ -->
|
|
|
|
<xsl:template name="search_field">
|
|
<xsl:variable name="select_action"><xsl:value-of select="select_action"/></xsl:variable>
|
|
<xsl:variable name="query"><xsl:value-of select="query"/></xsl:variable>
|
|
<xsl:variable name="lang_submit"><xsl:value-of select="lang_submit"/></xsl:variable>
|
|
<form method="post" action="{$select_action}">
|
|
<input type="text" class="forms" name="query" value="{$query}" onMouseover="window.status='Enter the search string. To show all entries, empty this field and press the SUBMIT button again.';return true;" onMouseout="window.status='';return true;"/>
|
|
<xsl:text> </xsl:text>
|
|
<input type="submit" class="forms" name="submit" value="{$lang_submit}" onMouseover="window.status='Submit the search string.';return true;" onMouseout="window.status='';return true;"/>
|
|
</form>
|
|
</xsl:template>
|