forked from pixelbacon/angularpresstheme
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsearchform.php
More file actions
28 lines (23 loc) · 689 Bytes
/
searchform.php
File metadata and controls
28 lines (23 loc) · 689 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
<?php
/**
* The template for displaying the search form
*
* @package Reactor
* @subpackge Templates
* @since 1.0.0
*/
?>
<form id="searchform" data-ng-submit="submit()">
<div class="row collapse">
<label class="screen-reader-text" for="s"><?php _e('Search for:', 'reactor'); ?></label>
<div class="<?php reactor_columns(array(9, 9)) ?>">
<input data-ng-model="text" type="text" name="s" id="s" placeholder="<?php echo
esc_attr__('Search', 'reactor'); ?>"/>
</div>
<div class="<?php reactor_columns(array(3, 3)) ?> end">
<button class="button prefix"
type="submit"><?php echo esc_attr__('Search', 'reactor'); ?>
</button>
</div>
</div>
</form>