1 <!DOCTYPE html PUBLIC
"-//W3C//DTD XHTML 1.0 Strict//EN"
2 "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
3 <html xmlns=
"http://www.w3.org/1999/xhtml">
5 <title>Templates for felogin
</title>
9 <h1>Common markers
</h1>
10 <p>These are substituted in all felogin item displaying templates.
</p>
14 <li>###ACTION_URI### - URI of the request for the login/logout form
</li>
15 <li>###EXTRA_HIDDEN### - Hook required (additionnal hidden field used by kb_md5fepw extension by Kraft Bernhard)
</li>
16 <li>###ON_SUBMIT### - Hook required (used by kb_md5fepw extension by Kraft Bernhard)
</li>
17 <li>###PREFIXID### - Same as class name ('tx_newloginbox_pi1') usefull to get a unique classname prefix
</li>
18 <li>###REDIRECT_URL### - URL of redirection upon login
</li>
19 <li>###STORAGE_PID### - explicit enough I guess (if not : id of the page where user are stored)
</li>
20 <li>###STATUS_HEADER### - depends of the template
</li>
21 <li>###STATUS_MESSAGE### - depends of the template
</li>
26 <li>###HEADER_VALID### - usefull to define what to show/hide
</li>
27 <li>###MESSAGE_VALID### - usefull to define what to show/hide
</li>
28 <li>###FORGOTP_VALID### - usefull to define what to show/hide
</li>
29 <li>###PERMALOGIN_VALID### - usefull to define what to show/hide
</li>
32 <h2>felogin Language Markers (see pi/locallang.xml)
</h2>
34 <li>###EMAIL_LABEL### - corresponding to 'your_email'
</li>
35 <li>###FORGOT_PASSWORD### - corresponding to 'forgot_password'
</li>
36 <li>###FORGOT_PASSWORD_BACKTOLOGIN### - corresponding to 'forgot_password_backToLogin'
</li>
37 <li>###FORGOT_PASSWORD_ENTEREMAIL### - corresponding to 'forgot_password_enterEmail'
</li>
38 <li>###LOGIN_LABEL### - corresponding to 'login'
</li>
39 <li>###PASSWORD_LABEL### - corresponding to 'password'
</li>
40 <li>###SEND_PASSWORD### - corresponding to 'send_password'
</li>
41 <li>###USERNAME_LABEL### - corresponding to 'username'
</li>
48 <!--###TEMPLATE_LOGIN###-->
52 <!-- ###LOGIN_FORM### -->
53 <form action=
"###ACTION_URI###" target=
"_top" method=
"post" onSubmit=
"###ON_SUBMIT###">
55 <legend>###LEGEND###
</legend>
57 <label for=
"user">###USERNAME_LABEL###
</label>
58 <input type=
"text" id=
"user" name=
"user" value=
"" />
61 <label for=
"pass">###PASSWORD_LABEL###
</label>
62 <input type=
"password" id=
"pass" name=
"pass" value=
"" />
65 <!--###PERMALOGIN_VALID###-->
67 <label for=
"permalogin">###PERMALOGIN###
</label>
68 <input name=
"permalogin" value=
"0" type=
"hidden" ###PERMALOGIN_HIDDENFIELD_ATTRIBUTES###
id=
"permaloginHiddenField" />
69 <input name=
"permalogin" value=
"1" type=
"checkbox" ###PERMALOGIN_CHECKBOX_ATTRIBUTES###
id=
"permalogin" onclick=
"document.getElementById('permaloginHiddenField').disabled = this.checked;" />
71 <!--###PERMALOGIN_VALID###-->
74 <input type=
"submit" name=
"submit" value=
"###LOGIN_LABEL###" />
77 <div class=
"felogin-hidden">
78 <input type=
"hidden" name=
"logintype" value=
"login" />
79 <input type=
"hidden" name=
"pid" value=
"###STORAGE_PID###" />
80 <input type=
"hidden" name=
"redirect_url" value=
"###REDIRECT_URL###" />
86 <!--###FORGOTP_VALID###-->
87 <p><!--###FORGOT_PASSWORD_LINK###-->###FORGOT_PASSWORD###
<!--###FORGOT_PASSWORD_LINK###--></p>
88 <!--###FORGOTP_VALID###-->
90 <!-- ###LOGIN_FORM### -->
92 <!--###TEMPLATE_LOGIN###-->
105 <!--###TEMPLATE_LOGOUT###-->
110 <form action=
"###ACTION_URI###" target=
"_top" method=
"post">
112 <legend>###LEGEND###
</legend>
114 <label>###USERNAME_LABEL###
</label>
118 <input type=
"submit" name=
"submit" value=
"###LOGOUT_LABEL###" />
121 <div class=
"felogin-hidden">
122 <input type=
"hidden" name=
"logintype" value=
"logout" />
123 <input type=
"hidden" name=
"pid" value=
"###STORAGE_PID###" />
128 <!--###TEMPLATE_LOGOUT###-->
136 <!--###TEMPLATE_FORGOT###-->
142 <!-- ###FORGOT_FORM### -->
143 <form action=
"###ACTION_URI###" method=
"post">
145 <legend>###LEGEND###
</legend>
147 <label for=
"###FORGOT_EMAIL###">###EMAIL_LABEL###
</label>
148 <input type=
"text" name=
"###FORGOT_EMAIL###" id=
"###FORGOT_EMAIL###" />
151 <input type=
"submit" name=
"submit" value=
"###SEND_PASSWORD###" />
155 <!-- ###FORGOT_FORM### -->
156 <p>###BACKLINK_LOGIN###
</p>
157 <!--###TEMPLATE_FORGOT###-->