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