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