summaryrefslogtreecommitdiffstats
path: root/views/elements/search.html.php
diff options
context:
space:
mode:
authorraylu <raylu@mixpanel.com>2011-07-16 13:45:23 -0700
committerraylu <raylu@mixpanel.com>2011-07-16 13:45:40 -0700
commitae45ae42ab8cbdeb676f6ce4a47cd62ff5f0f6f2 (patch)
treedb17051403c4d82fe35accc0c6ef3af0fec7496e /views/elements/search.html.php
parentfa401510c2929d0d520a5104a01a843473bd2439 (diff)
downloadotakuhub-ae45ae42ab8cbdeb676f6ce4a47cd62ff5f0f6f2.tar.xz
oops; should have been committed with 657d270
Diffstat (limited to 'views/elements/search.html.php')
-rw-r--r--views/elements/search.html.php8
1 files changed, 8 insertions, 0 deletions
diff --git a/views/elements/search.html.php b/views/elements/search.html.php
new file mode 100644
index 0000000..7169083
--- /dev/null
+++ b/views/elements/search.html.php
@@ -0,0 +1,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(); ?>