mirror of
https://gitlab.archlinux.org/archlinux/aurweb.git
synced 2025-02-03 10:43:03 +01:00
fixed indention + xhtml in search_accounts_form.php
Signed-off-by: Callan Barrett <wizzomafizzo@gmail.com>
This commit is contained in:
parent
63d70dc84a
commit
4cc9d9926d
1 changed files with 66 additions and 56 deletions
|
@ -1,66 +1,76 @@
|
||||||
<br />
|
<br />
|
||||||
<form action='account.php' method='post'>
|
<form action='account.php' method='post'>
|
||||||
<input type='hidden' name='Action' value='SearchAccounts'>
|
<input type='hidden' name='Action' value='SearchAccounts' />
|
||||||
<center>
|
<center>
|
||||||
<table border='0' cellpadding='0' cellspacing='0' width='80%'>
|
<table border='0' cellpadding='0' cellspacing='0' width='80%'>
|
||||||
|
|
||||||
<tr>
|
<tr>
|
||||||
<td align='left'><?php print __("Username"); ?>:</td>
|
<td align='left'><?php print __("Username"); ?>:</td>
|
||||||
<td align='left'><input type='text' size='30' maxlength='64'
|
<td align='left'>
|
||||||
name='U'></td>
|
<input type='text' size='30' maxlength='64' name='U' />
|
||||||
|
</td>
|
||||||
</tr>
|
</tr>
|
||||||
|
|
||||||
<tr>
|
<tr>
|
||||||
<td align='left'><?php print __("Account Type"); ?>:</td>
|
<td align='left'><?php print __("Account Type"); ?>:</td>
|
||||||
<td align='left'><select name=T>
|
<td align='left'>
|
||||||
<option value=''><?php print __("Any type"); ?>
|
<select name=T>
|
||||||
<option value='u'><?php print __("Normal user"); ?>
|
<option value=''><?php print __("Any type"); ?></option>
|
||||||
<option value='t'><?php print __("Trusted user"); ?>
|
<option value='u'><?php print __("Normal user"); ?></option>
|
||||||
<option value='d'><?php print __("Developer"); ?>
|
<option value='t'><?php print __("Trusted user"); ?></option>
|
||||||
</select></td>
|
<option value='d'><?php print __("Developer"); ?></option>
|
||||||
|
</select>
|
||||||
|
</td>
|
||||||
</tr>
|
</tr>
|
||||||
|
|
||||||
<tr>
|
<tr>
|
||||||
<td align='left'><?php print __("Account Suspended"); ?>:</td>
|
<td align='left'><?php print __("Account Suspended"); ?>:</td>
|
||||||
<td align='left'><input type='checkbox' name='S'>
|
<td align='left'>
|
||||||
|
<input type='checkbox' name='S' />
|
||||||
|
</td>
|
||||||
</tr>
|
</tr>
|
||||||
|
|
||||||
<tr>
|
<tr>
|
||||||
<td align='left'><?php print __("Email Address"); ?>:</td>
|
<td align='left'><?php print __("Email Address"); ?>:</td>
|
||||||
<td align='left'><input type='text' size='30' maxlength='64'
|
<td align='left'>
|
||||||
name='E'></td>
|
<input type='text' size='30' maxlength='64'name='E' />
|
||||||
|
</td>
|
||||||
</tr>
|
</tr>
|
||||||
|
|
||||||
<tr>
|
<tr>
|
||||||
<td align='left'><?php print __("Real Name"); ?>:</td>
|
<td align='left'><?php print __("Real Name"); ?>:</td>
|
||||||
<td align='left'><input type='text' size='30' maxlength='32'
|
<td align='left'>
|
||||||
name='R'></td>
|
<input type='text' size='30' maxlength='32' name='R' />
|
||||||
|
</td>
|
||||||
</tr>
|
</tr>
|
||||||
|
|
||||||
<tr>
|
<tr>
|
||||||
<td align='left'><?php print __("IRC Nick"); ?>:</td>
|
<td align='left'><?php print __("IRC Nick"); ?>:</td>
|
||||||
<td align='left'><input type='text' size='30' maxlength='32'
|
<td align='left'>
|
||||||
name='I'></td>
|
<input type='text' size='30' maxlength='32' name='I' />
|
||||||
|
</td>
|
||||||
</tr>
|
</tr>
|
||||||
|
|
||||||
<tr>
|
<tr>
|
||||||
<td align='left'><?php print __("Sort by"); ?>:</td>
|
<td align='left'><?php print __("Sort by"); ?>:</td>
|
||||||
<td align='left'><select name=SB>
|
<td align='left'>
|
||||||
<option value='u'><?php print __("Username"); ?>
|
<select name=SB>
|
||||||
<option value='t'><?php print __("Account Type"); ?>
|
<option value='u'><?php print __("Username"); ?></option>
|
||||||
<option value='r'><?php print __("Real Name"); ?>
|
<option value='t'><?php print __("Account Type"); ?></option>
|
||||||
<option value='i'><?php print __("IRC Nick"); ?>
|
<option value='r'><?php print __("Real Name"); ?></option>
|
||||||
<option value='v'><?php print __("Last vote"); ?>
|
<option value='i'><?php print __("IRC Nick"); ?></option>
|
||||||
</select></td>
|
<option value='v'><?php print __("Last vote"); ?></option>
|
||||||
|
</select>
|
||||||
|
</td>
|
||||||
</tr>
|
</tr>
|
||||||
|
|
||||||
<tr>
|
<tr>
|
||||||
<td> </td>
|
<td> </td>
|
||||||
<td align='left'> <br/>
|
<td align='left'>
|
||||||
<input type='submit' class='button'
|
<br />
|
||||||
value="<?php print __("Search"); ?>">
|
<input type='submit' class='button' value="<?php print __("Search"); ?>" />
|
||||||
<input type='reset' class='button'
|
<input type='reset' class='button' value="<?php print __("Reset"); ?>" />
|
||||||
value="<?php print __("Reset"); ?>"></td>
|
</td>
|
||||||
</tr>
|
</tr>
|
||||||
|
|
||||||
</table>
|
</table>
|
||||||
|
|
Loading…
Add table
Reference in a new issue