summaryrefslogtreecommitdiffstats
path: root/web/template/search_accounts_form.php
blob: 7ac958e225f94e8582d1686c9b826e25441778a1 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
<br />
<form action='account.php' method='post'>
	<table border='0' cellpadding='0' cellspacing='0' width='80%' style="margin:0 auto;">

		<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>
					<option value='u'><?php print _("Normal user"); ?></option>
					<option value='t'><?php print _("Trusted user"); ?></option>
					<option value='d'><?php print _("Developer"); ?></option>
				</select>
			</td>
		</tr>

		<tr>
			<td align='left'><?php print _("Account Suspended"); ?>:</td>
			<td align='left'>
				<input type='checkbox' name='S' />
			</td>
		</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>
					<option value='t'><?php print _("Account Type"); ?></option>
					<option value='r'><?php print _("Real Name"); ?></option>
					<option value='i'><?php print _("IRC Nick"); ?></option>
					<option value='v'><?php print _("Last vote"); ?></option>
				</select>
			</td>
		</tr>

		<tr>
			<td>&nbsp;</td>
			<td align='left'>
				<br />
				<input type='hidden' name='Action' value='SearchAccounts' />
				<input type='submit' class='button' value="<?php print _("Search"); ?>" />
				<input type='reset' class='button' value="<?php print _("Reset"); ?>" />
			</td>
		</tr>

	</table>
</form>