aboutsummaryrefslogtreecommitdiffstats
path: root/phpBB/styles/subsilver2/template/ucp_login_link.html
blob: 6db9890d8cf6cd795df9b92987f2c15761439a08 (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
<!-- INCLUDE overall_header.html -->

<table class="tablebg" width="100%" cellspacing="1">
	<tr>
		<th>{SITENAME} - {L_LOGIN_LINK}</th>
	</tr>

	<tr>
		<td class="row1" align="center"><span class="genmed">{L_LOGIN_LINK_EXPLAIN}</span></td>
	</tr>

	<!-- IF LOGIN_LINK_ERROR -->
		<tr>
			<td class="row1" align="center"><span class="genmed error">{LOGIN_LINK_ERROR}</span></td>
		</tr>
	<!-- ENDIF -->

	<tr>
		<td class="row1">
			<form action="{REGISTER_ACTION}" method="post" id="register">
				<table width="100%" cellspacing="1">
					<tr>
						<th colspan="2">{L_REGISTER}</th>
					</tr>

					<tr>
						<td>{S_HIDDEN_FIELDS}<input type="submit" name="register" tabindex="1" value="{L_REGISTER}" class="button1" /></td>
					</tr>
				</table>
			</form>
		</td>
	</tr>

	<tr>
		<td class="row1">
			<form action="{LOGIN_ACTION}" method="post" id="login">
				<table width="100%" cellspacing="1">
					<tr>
						<th colspan="2">{L_LOGIN}</th>
					</tr>

					<!-- IF LOGIN_ERROR -->
						<tr>
							<td class="row1" align="center" colspan="2"><span class="genmed error">{LOGIN_ERROR}</span></td>
						</tr>
					<!-- ENDIF -->

					<tr>
						<td><label for="{USERNAME_CREDENTIAL}">{L_USERNAME}{L_COLON}</label></td>
						<td><input type="text" tabindex="2" name="{USERNAME_CREDENTIAL}" id="{USERNAME_CREDENTIAL}" size="25" value="{LOGIN_USERNAME}" class="inputbox autowidth" /></td>
					</tr>

					<tr>
						<td><label for="{PASSWORD_CREDENTIAL}">{L_PASSWORD}{L_COLON}</label></td>
						<td><input type="password" tabindex="3" id="{PASSWORD_CREDENTIAL}" name="{PASSWORD_CREDENTIAL}" size="25" class="inputbox autowidth" autocomplete="off" /></td>
					</tr>

					<!-- IF CAPTCHA_TEMPLATE and S_CONFIRM_CODE -->
						<!-- DEFINE $CAPTCHA_TAB_INDEX = 4 -->
						<!-- INCLUDE {CAPTCHA_TEMPLATE} -->
					<!-- ENDIF -->

					{S_LOGIN_REDIRECT}
					<tr>
						<td>&nbsp;</td>
						<td>{S_HIDDEN_FIELDS}<input type="submit" name="login" tabindex="5" value="{L_LOGIN}" class="button1" /></td>
					</tr>
				</table>
			</form>
		</td>
	</tr>
</table>

<!-- INCLUDE overall_footer.html -->