-
Notifications
You must be signed in to change notification settings - Fork 11
/
mod_login.tpl
91 lines (85 loc) · 3.79 KB
/
mod_login.tpl
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
83
84
85
86
87
88
89
90
91
<div class="module main">
<!-- BEGIN switch_login -->
<div class="main-head"><div class="h3">{L_LOGIN}</div></div>
<div class="main-content">
<form action="{S_LOGIN_ACTION}" method="post">
<fieldset class="frm-set login">
<dl>
<dt><label for="username">{L_USERNAME}:</label></dt>
<dd><input type="text" tabindex="1" name="username" id="username" size="20" maxlength="40" value="{USERNAME}" class="inputbox autowidth" /></dd>
</dl>
<dl>
<dt><label for="password">{L_PASSWORD}:</label></dt>
<dd><input type="password" tabindex="2" id="password" name="password" size="20" maxlength="25" class="inputbox autowidth" /></dd>
<dd><a href="{U_SEND_PASSWORD}" rel="nofollow">{L_SEND_PASSWORD}</a></dd>
</dl>
<dl>
<dd><label for="autologin"><input type="checkbox" name="autologin" id="autologin" tabindex="4" class="checkbox" {AUTOLOGIN_CHECKED} /> {L_AUTO_LOGIN}</label></dd>
</dl>
<dl>
<dd style="text-align:center;"><input type="submit" name="login" tabindex="6" value="{L_LOGIN}" class="button1" /></dd>
</dl>
<!-- BEGIN switch_social_login -->
<dl>
<dd class="center">
<div class="social_btn">
<div class="fb_or">{switch_login.switch_social_login.L_OR}</div> <br />
<!-- BEGIN fb_connect -->
<div class="fb-login-button"></div>
<!-- END fb_connect -->
<br />
<!-- BEGIN topicit_connect -->
<div class="ti-connect"></div>
<!-- END topicit_connect -->
</div>
</dd>
</dl>
<!-- END switch_social_login -->
</fieldset>
</form>
</div>
<!-- END switch_login -->
<!-- BEGIN switch_login_small -->
<div class="main-head"><div class="h3">{L_LOGIN}</div></div>
<div class="main-content">
<form action="{S_LOGIN_ACTION}" method="post">
<p><label for="username"><strong>{L_USERNAME}:</strong></label></p>
<p style="height:2em;valign:top;"><input type="text" name="username" id="username" size="15" maxlength="40" value="{USERNAME}" class="inputbox autowidth" /></p>
<p><label for="password"><strong>{L_PASSWORD}:</strong></label></p>
<p style="height:2em;valign:top;"><input type="password" id="password" name="password" size="15" maxlength="25" class="inputbox autowidth" /></p>
<p><a href="{U_SEND_PASSWORD}" rel="nofollow">{L_SEND_PASSWORD}</a></p><br>
<p><input type="checkbox" name="autologin" id="autologin" tabindex="4" class="checkbox" {AUTOLOGIN_CHECKED} /><label for="autologin"> {L_AUTO_LOGIN}</label></p><br>
<p align="center"><input type="submit" name="login" tabindex="6" value="{L_LOGIN}" class="button1" /></p>
<!-- BEGIN switch_social_login -->
<div class="mt10 center">
<div class="social_btn">
<div class="fb_or">{switch_login_small.switch_social_login.L_OR}</div> <br />
<!-- BEGIN fb_connect -->
<div class="fb-login-button"></div>
<!-- END fb_connect -->
<br />
<!-- BEGIN topicit_connect -->
<div class="ti-connect"></div>
<!-- END topicit_connect -->
</div>
</div>
<!-- END switch_social_login -->
</form>
</div>
<!-- END switch_login_small -->
<!-- BEGIN switch_profile -->
<div class="main-head"><div class="h3">{USERNAME}</div></div>
<div class="main-content clearfix details">
<div class="left">
{USERNAME_AVATAR}
</div>
<dl class="left">
<dt>{L_MESSAGES}: </dt>
<dd> <strong>{NB_MESSAGES}</strong></dd>
<dt>{L_PM}: </dt>
<dd> {NB_PM_UNREAD} / {NB_PM_READ}</dd>
<dd style="text-align: center;"><a href="{U_PROFILE}">{L_MY_PROFILE}</a></dd>
</dl>
</div>
<!-- END switch_profile -->
</div>