search.html.php 363 B

12345678
  1. <?= $this->form->create(null, array('method' => 'get', 'class' => 'search')); ?>
  2. <?= $this->form->text('q', array('id' => 'q')); ?>
  3. <?= $this->form->select('type', array('' => 'All',
  4. 'anime' => 'Anime',
  5. 'manga' => 'Manga',
  6. 'kdrama' => 'Kdrama')); ?>
  7. <?= $this->form->submit('Search'); ?>
  8. <?= $this->form->end(); ?>