Advertisement
vLight

fuel_FORMCLASS_search_form

Feb 3rd, 2014
65
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.40 KB | None | 0 0
  1. <?php echo Form::open(
  2.     array(
  3.         'action' => '/search/',
  4.         'method' => 'get',
  5.         'id' => 'nav-bar-search',
  6.         'class' => 'navbar-form navbar-left',
  7.         'role' => 'search' )
  8.      ); ?>
  9.     <div class="form-group">
  10.     <input type="text" class="form-control" placeholder="Search" name="q">
  11.   </div>
  12.   <button type="submit" class="btn btn-default">Submit</button>
  13. <?php echo Form::csrf(); echo Form::close(); ?>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement