aboutsummaryrefslogtreecommitdiffstats
path: root/phpBB/adm/style/acp_users_overview.html
blob: cfdc364b488a17e37978ddbf7509bb7571f3a109 (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
77
78
79
80
81
82
	<form id="user_overview" method="post" action="{U_ACTION}">

	<fieldset>
		<legend>{L_ACP_USER_OVERVIEW}</legend>
	<dl>
		<dt><label for="user">{L_USERNAME}:</label><br /><span>{L_NAME_CHARS_EXPLAIN}</span></dt>
		<dd><input type="text" id="user" name="user" value="{USER}" /></dd>
		<!-- IF U_SWITCH_PERMISSIONS --><dd>[ <a href="{U_SWITCH_PERMISSIONS}">{L_USE_PERMISSIONS}</a> ]</dd><!-- ENDIF -->
	</dl>
	<!-- IF S_USER_INACTIVE -->
	<dl>
		<dt><label>{L_USER_IS_INACTIVE}:</label></dt>
		<dd><strong>{USER_INACTIVE_REASON}</strong></dd>
	</dl>
	<!-- ENDIF -->
	<dl>
		<dt><label>{L_REGISTERED}:</label></dt>
		<dd><strong>{USER_REGISTERED}</strong></dd>
	</dl>
	<!-- IF S_USER_IP -->
	<dl>
		<dt><label>{L_REGISTERED_IP}:</label></dt>
		<dd><a href="{U_SHOW_IP}">{REGISTERED_IP}</a></dd>
		<dd>[ <a href="#" onclick="window.open('{U_WHOIS}', '_whois', 'height=500, resizable=yes, scrollbars=yes, width=700'); return false;">{L_WHOIS}</a> ]</dd>
	</dl>
	<!-- ENDIF -->
	<dl>
		<dt><label>{L_LAST_ACTIVE}:</label></dt>
		<dd><strong>{USER_LASTACTIVE}</strong></dd>
	</dl>
	<dl>
		<dt><label>{L_POSTS}:</label></dt>
		<dd><strong>{USER_POSTS}</strong></dd>
	</dl>
	<dl>
		<dt><label>{L_WARNINGS}:</label></dt>
		<dd><strong>{USER_WARNINGS}</strong></dd>
	</dl>
	<dl>
		<dt><label for="user_founder">{L_FOUNDER}:</label><br /><span>{L_FOUNDER_EXPLAIN}</span></dt>
		<dd><input type="radio" class="radio" name="user_founder" value="1"<!-- IF S_USER_FOUNDER --> id="user_founder" checked="checked"<!-- ENDIF --><!-- IF not S_FOUNDER --> disabled="disabled"<!-- ENDIF --> />&nbsp;{L_YES}&nbsp; <input type="radio" class="radio" name="user_founder" value="0"<!-- IF not S_USER_FOUNDER --> id="user_founder" checked="checked"<!-- ENDIF --><!-- IF not S_FOUNDER --> disabled="disabled"<!-- ENDIF --> />&nbsp;{L_NO}&nbsp;</dd>
	</dl>
	<dl>
		<dt><label for="user_email">{L_EMAIL}:</label></dt>
		<dd><input class="medium" type="text" id="user_email" name="user_email" value="{USER_EMAIL}" /></dd>
	</dl>
	<dl>
		<dt><label for="email_confirm">{L_CONFIRM_EMAIL}:</label><br /><span>{L_CONFIRM_EMAIL_EXPLAIN}</span></dt>
		<dd><input class="medium" type="text" id="email_confirm" name="email_confirm" value="" /></dd>
	</dl>
	<dl>
		<dt><label for="user_password">{L_NEW_PASSWORD}:</label><br /><span>{L_CHANGE_PASSWORD_EXPLAIN}</span></dt>
		<dd><input type="password" id="user_password" name="user_password" value="" /></dd>
	</dl>
	<dl>
		<dt><label for="password_confirm">{L_CONFIRM_PASSWORD}:</label><br /><span>{L_CONFIRM_PASSWORD_EXPLAIN}</span></dt>
		<dd><input type="password" id="password_confirm" name="password_confirm" value="" /></dd>
	</dl>
	<!-- IF not S_USER_FOUNDER or S_FOUNDER -->
	</fieldset>

	<fieldset>
		<legend>{L_USER_TOOLS}</legend>
	<dl>
		<dt><label for="quicktools">{L_QUICK_TOOLS}:</label></dt>
		<dd><select id="quicktools" name="action">{S_ACTION_OPTIONS}</select></dd>
	</dl>
		<!-- IF not S_OWN_ACCOUNT -->
			<dl>
				<dt><label for="delete_user">{L_DELETE_USER}:</label><br /><span>{L_DELETE_USER_EXPLAIN}</span></dt>
				<dd><input type="checkbox" class="radio" name="delete" value="1" /></dd>
				<dd><select id="delete_user" name="delete_type"><option value="retain">{L_RETAIN_POSTS}</option><option value="remove">{L_DELETE_POSTS}</option></select></dd>
			</dl>
		<!-- ENDIF -->
	<!-- ENDIF -->
	</fieldset>

	<fieldset class="quick">
		<input class="button1" type="submit" name="update" value="{L_SUBMIT}" />
	</fieldset>

	</form>