20 lines
573 B
PHP
20 lines
573 B
PHP
<?php
|
|
/**
|
|
* The template for displaying search form
|
|
*
|
|
* @package Biofriction
|
|
* @since Biofriction 1.0.0
|
|
*/
|
|
|
|
?>
|
|
|
|
<form role="search" method="get" id="searchform" action="<?php echo home_url( '/' ); ?>">
|
|
<div class="input-group">
|
|
<input type="text" class="input-group-field" value="" name="s" id="s" aria-label="Search" placeholder="<?php
|
|
esc_attr_e( 'Search', 'foundationpress' ); ?>">
|
|
<div class="input-group-button">
|
|
<input type="submit" id="searchsubmit" value="<?php esc_attr_e( 'Search', 'foundationpress' ); ?>" class="button">
|
|
</div>
|
|
</div>
|
|
</form>
|