Files
rm.rzeszow.pl/templates/site/search-form.php
2023-09-04 21:59:34 +02:00

7 lines
515 B
PHP

<? global $lang; ?>
<div class="search">
<form method="POST" action="wyszukiwarka" id="wyszukiwarka" class="form_designer">
<input type="text" name="s_text" id="s_text" value="<? if ( isset( $this -> _text ) ) echo $this -> _text; else echo 'Szukaj...';?>" onFocus="$( this ).val( '' );" onBlur="if ( $( this ).val() == '' ) $( this ).val( '<?=$lang -> getTrans( 'T_SZUKAJ' );?>..' );">
<img src="/images/nosystem/search.png" onclick="$( '#wyszukiwarka' ).submit();" id="button-search" />
</form>
</div>