summaryrefslogtreecommitdiffstats
path: root/views/elements/search.html.php
blob: 7169083fd610a67474accaf8464c6dd011b08b8c (plain)
1
2
3
4
5
6
7
8
<?= $this->form->create(null, array('method' => 'get')); ?>
	<?= $this->form->text('q'); ?>
	<?= $this->form->select('type', array(''  => 'All',
								  		  'anime'  => 'Anime',
								  		  'manga'  => 'Manga',
								  		  'kdrama' => 'Kdrama')); ?>
	<?= $this->form->submit('Search'); ?>
<?= $this->form->end(); ?>