aboutsummaryrefslogtreecommitdiffstats
path: root/phpBB/styles/prosilver/template/ucp_profile_autologin_keys.html
blob: bf97434bacced5611b2b94f9f35dad1e0c764622 (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
<!-- INCLUDE ucp_header.html -->

<form id="ucp" method="post" action="{S_UCP_ACTION}"{S_FORM_ENCTYPE}>

<h2>{L_TITLE}</h2>
<div class="panel">
	<div class="inner">

	<!-- IF .errors -->
	<p class="error">
		<!-- BEGIN errors -->
			{errors} <br />
		<!-- END errors -->
	</p>
	<!-- ENDIF -->

	<p>{L_PROFILE_AUTOLOGIN_KEYS}</p><br />
	<table class="table1">
	<thead>
	<tr>
		<th>{L_MARK}</th>
		<th>{L_LOGIN_KEY}</th>
		<th>{L_IP}</th>
		<th>{L_LOGIN_TIME}</th>
	</tr>
	</thead>
	<tbody>
	<!-- BEGIN sessions -->
		<!-- IF sessions.S_ROW_COUNT is even --><tr class="bg1"><!-- ELSE --><tr class="bg2"><!-- ENDIF -->
			<td style="text-align: center"><input type="checkbox" name="keys[]" value="{sessions.KEY}" id="{sessions.KEY}"/></td>
			<td><label for="{sessions.KEY}">{sessions.KEY}</label></td>
			<td style="text-align: center">{sessions.IP}</td>
			<td style="text-align: center">{sessions.LOGIN_TIME}</td>
		</tr>
	<!-- BEGINELSE -->
		<tr><td colspan="4" class="bg1" style="text-align: center">{L_PROFILE_NO_AUTOLOGIN_KEYS}</td></tr>
	<!-- END sessions -->
	</tbody>
	</table>
	</div>
</div>

<!-- IF .sessions -->
	<fieldset class="submit-buttons">
		{S_HIDDEN_FIELDS}<input type="submit" name="submit" value="{L_DELETE}" class="button1" />
		{S_FORM_TOKEN}
	</fieldset>
<!-- ENDIF -->
</form>

<!-- INCLUDE ucp_footer.html -->