mirror of
https://gitlab.archlinux.org/archlinux/aurweb.git
synced 2025-02-03 10:43:03 +01:00
This is a patch that fixes a lot of little things: * We no longer have pkgsearch or pkgdetails link functions and all references to them are gone, that's what a back button is for and if we really need it we can come up with something better * No longer have do_Details variable, this means links on the package search are simply ?ID=foo * On the pkgdetails pages when there are either no deps, deps by, sources or comments for a package the list for each will display "None" instead of nothing at all (ruining the layout) * Fixed a bug where if a package had no sources or no deps pkgsubmit.php would submit an empty one * Translation of the word "Search'" has been changed to "Search" Most of these relate to each other. Signed-off-by: Callan Barrett <wizzomafizzo@gmail.com>
68 lines
1.8 KiB
PHP
68 lines
1.8 KiB
PHP
<br />
|
|
<form action='account.php' method='post'>
|
|
<input type='hidden' name='Action' value='SearchAccounts'>
|
|
<center>
|
|
<table border='0' cellpadding='0' cellspacing='0' width='80%'>
|
|
|
|
<tr>
|
|
<td align='left'><?php print __("Username"); ?>:</td>
|
|
<td align='left'><input type='text' size='30' maxlength='64'
|
|
name='U'></td>
|
|
</tr>
|
|
|
|
<tr>
|
|
<td align='left'><?php print __("Account Type"); ?>:</td>
|
|
<td align='left'><select name=T>
|
|
<option value=''><?php print __("Any type"); ?>
|
|
<option value='u'><?php print __("Normal user"); ?>
|
|
<option value='t'><?php print __("Trusted user"); ?>
|
|
<option value='d'><?php print __("Developer"); ?>
|
|
</select></td>
|
|
</tr>
|
|
|
|
<tr>
|
|
<td align='left'><?php print __("Account Suspended"); ?>:</td>
|
|
<td align='left'><input type='checkbox' name='S'>
|
|
</tr>
|
|
|
|
<tr>
|
|
<td align='left'><?php print __("Email Address"); ?>:</td>
|
|
<td align='left'><input type='text' size='30' maxlength='64'
|
|
name='E'></td>
|
|
</tr>
|
|
|
|
<tr>
|
|
<td align='left'><?php print __("Real Name"); ?>:</td>
|
|
<td align='left'><input type='text' size='30' maxlength='32'
|
|
name='R'></td>
|
|
</tr>
|
|
|
|
<tr>
|
|
<td align='left'><?php print __("IRC Nick"); ?>:</td>
|
|
<td align='left'><input type='text' size='30' maxlength='32'
|
|
name='I'></td>
|
|
</tr>
|
|
|
|
<tr>
|
|
<td align='left'><?php print __("Sort by"); ?>:</td>
|
|
<td align='left'><select name=SB>
|
|
<option value='u'><?php print __("Username"); ?>
|
|
<option value='t'><?php print __("Account Type"); ?>
|
|
<option value='r'><?php print __("Real Name"); ?>
|
|
<option value='i'><?php print __("IRC Nick"); ?>
|
|
<option value='v'><?php print __("Last vote"); ?>
|
|
</select></td>
|
|
</tr>
|
|
|
|
<tr>
|
|
<td> </td>
|
|
<td align='left'> <br/>
|
|
<input type='submit' class='button'
|
|
value="<?php print __("Search"); ?>">
|
|
<input type='reset' class='button'
|
|
value="<?php print __("Reset"); ?>"></td>
|
|
</tr>
|
|
|
|
</table>
|
|
</center>
|
|
</form>
|