egroupware/phpgwapi/templates/default/search_field.xsl

13 lines
557 B
XML
Raw Normal View History

2002-09-27 02:15:09 +02:00
<!-- $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}"/>
<xsl:text> </xsl:text>
<input type="submit" class="forms" name="submit" value="{$lang_submit}"/>
</form>
</xsl:template>