document.write('
Data hosted with ♥ by Pastebin.com - Download Raw - See Original
  1. ?php
  2. /**
  3.  * @package     Joomla.Site
  4.  * @subpackage  mod_search
  5.  *
  6.  * @copyright   Copyright (C) 2005 - 2013 Open Source Matters, Inc. All rights reserved.
  7.  * @license     GNU General Public License version 2 or later; see LICENSE.txt
  8.  */
  9.  
  10. defined(\'_JEXEC\') or die;
  11. ?>
  12.  
  13. <div class="search">
  14.     <form action="<?php echo JRoute::_(\'index.php\');?>" method="post">
  15.         <input name="searchword" class="input-block-level" id="mod-search-searchword" type="text" placeholder="<?php echo $text; ?>" />
  16.         <input type="hidden" name="task" value="search" />
  17.         <input type="hidden" name="option" value="com_search" />
  18.         <input type="hidden" name="Itemid" value="0" />
  19.         <button class="btn-top-search" onclick="this.form.searchword.focus();">
  20.             <!-- For change icon of search -->
  21.             <i class="icon-search"></i>
  22.         </button>
  23.     </form>
  24. </div>
');