summaryrefslogtreecommitdiffstats
path: root/web/template/pkg_search_form.php
diff options
context:
space:
mode:
authorLoui Chang <louipc.ist@gmail.com>2009-01-05 22:52:34 +0100
committerLoui Chang <louipc.ist@gmail.com>2009-01-05 22:52:34 +0100
commit07e4d397ba5c71d7a843d370ee1db0f8e6d53070 (patch)
tree392ad960613b971aa21c019595968bb354dd689e /web/template/pkg_search_form.php
parent36b44f371bd240fe448d7a22f7295581c9b35633 (diff)
downloadaur-07e4d397ba5c71d7a843d370ee1db0f8e6d53070.tar.gz
aur-07e4d397ba5c71d7a843d370ee1db0f8e6d53070.tar.xz
Change layout of search form.
Signed-off-by: Loui Chang <louipc.ist@gmail.com>
Diffstat (limited to 'web/template/pkg_search_form.php')
-rw-r--r--web/template/pkg_search_form.php40
1 files changed, 16 insertions, 24 deletions
diff --git a/web/template/pkg_search_form.php b/web/template/pkg_search_form.php
index 289f8b4a..90feb375 100644
--- a/web/template/pkg_search_form.php
+++ b/web/template/pkg_search_form.php
@@ -1,23 +1,21 @@
<?php include_once('pkgfuncs.inc') ?>
+<div class='pgbox'>
<form action='packages.php' method='get'>
-<input type='hidden' name='O' value='0'>
-<center>
-<table cellspacing='3' class='boxSoft'>
-<tr>
- <td class='boxSoftTitle' align='right'>
- <span class='f3'><?php print __("Search Criteria"); ?></span>
- </td>
-</tr>
-<tr>
- <td class='boxSoft'>
- <div id="search_box" class="blue">
- <label><?php print __("Keywords"); ?></label>
- <input type='text' name='K' size='20' value="<?php print stripslashes(trim(htmlspecialchars($_REQUEST["K"], ENT_QUOTES))); ?>" maxlength='35' />
- <?php if (!$_GET['detail']): ?><input type='submit' style='width:80px' class='button' name='do_Search' value='<?php print __("Go"); ?>' /><?php endif; ?>
- <a href="?<?php print mkurl('detail=' . (($_GET['detail']) ? 0 : 1) ) ?>">Advanced</a>
- <?php if ($_GET['detail']): ?>
- <div id="advanced">
+<div class='pgboxtitle' align='right'>
+ <span class='f3'><?php print __("Search Criteria"); ?></span>
+ <input type='text' name='K' size='30' value="<?php print stripslashes(trim(htmlspecialchars($_REQUEST["K"], ENT_QUOTES))); ?>" maxlength='35' />
+ <input type='submit' style='width:80px' class='button' name='do_Search' value='<?php print __("Go"); ?>' />
+ <?php if (!empty($_GET['detail'])): ?>
+ <input type='submit' style='width:80px' class='button' name='do_Orphans' value='<?php print __("Orphans"); ?>' />
+
+<?php endif; ?>
+ <a href="?<?php print mkurl('detail=' . ((!empty($_GET['detail'])) ? 0 : 1) ) ?>">Advanced</a>
+</div>
+
+<input type='hidden' name='O' value='0' />
+ <?php if (!empty($_GET['detail'])): ?>
+ <div id="advanced-search" class="blue">
<input type="hidden" name="detail" value="1" />
<ul>
<li>
@@ -123,14 +121,8 @@
</select>
</li>
</ul>
- <input type='submit' style='width:80px' class='button' name='do_Search' value='<?php print __("Go"); ?>' />
- <input type='submit' style='width:80px' class='button' name='do_Orphans' value='<?php print __("Orphans"); ?>' />
</div>
<?php endif; ?>
- </div>
- </td>
-</tr>
-</table>
-</center>
</form>
+</div>
<br />