B4BY.588
Home
Terminal
Upload
information
Create File
Create Folder
About
Tools
:
/
home
/
bhingree
/
public_html
/
wp-content
/
themes
/
conat
/
Filename :
searchform.php
back
Copy
<?php /** * Search Form template * * @package CONAT * @author Noor Tech * @version 1.0 */ if ( ! defined( 'ABSPATH' ) ) { die( 'Restricted' ); } ?> <!-- Sidebar Widget --> <div class="search-box"> <form method="get" action="<?php echo esc_url( home_url( '/' ) ); ?>"> <div class="form-group"> <input type="search" name="s" value="<?php echo get_search_query(); ?>" placeholder="<?php esc_attr_e( 'Search...', 'conat' ); ?>"> <button type="submit"><span class="icon fa fa-search"></span></button> </div> </form> </div>