20 lines
479 B
PHP
20 lines
479 B
PHP
<?php
|
|
/**
|
|
* Wyszukiwarka
|
|
*
|
|
* @link https://krzysztof-turek.com
|
|
*
|
|
* @package tylkofotografia.pl
|
|
* @version 0.2
|
|
*/
|
|
|
|
?>
|
|
|
|
<section class="searchform">
|
|
<form class="d-flex" method="get" action="/index.php">
|
|
<input class="form-control me-2" type="search" name="s" placeholder="Szukaj na stronie..." aria-label="Search">
|
|
<button class="btn btn-outline-dark" type="submit">
|
|
<i class="fas fa-search"></i>
|
|
</button>
|
|
</form>
|
|
</section>
|