Skip to content
GitLab
Menu
Projects
Groups
Snippets
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Sign in
Toggle navigation
Menu
Open sidebar
t3o
my.typo3.org
Commits
daa15886
Commit
daa15886
authored
Jul 09, 2017
by
Stefan Busemann
Browse files
[TASK] Add login template
parent
96fd563f
Pipeline
#1427
passed with stages
in 4 minutes and 49 seconds
Changes
2
Pipelines
1
Hide whitespace changes
Inline
Side-by-side
html/typo3conf/ext/t3omy/Configuration/TypoScript/felogin.txt
0 → 100644
View file @
daa15886
html/typo3conf/ext/t3omy/Resources/Private/Templates/Felogin/FrontendLogin.html
0 → 100644
View file @
daa15886
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN"
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
<html
xmlns=
"http://www.w3.org/1999/xhtml"
>
<head>
<title>
Templates for felogin
</title>
</head>
<body>
<h1>
Common markers
</h1>
<p>
These are substituted in all felogin item displaying templates.
</p>
<h2>
Markers
</h2>
<ul>
<li>
###ACTION_URI### - URI of the request for the login/logout form
</li>
<li>
###EXTRA_HIDDEN### - Hook required (additional hidden field used by kb_md5fepw extension by Kraft Bernhard)
</li>
<li>
###ON_SUBMIT### - Hook required (used by kb_md5fepw extension by Kraft Bernhard)
</li>
<li>
###PREFIXID### - Same as class name ('tx_felogin_pi1') useful to get a unique classname prefix
</li>
<li>
###REDIRECT_URL### - URL of redirection upon login
</li>
<li>
###NOREDIRECT### - if set, no redirect will be done
</li>
<li>
###STORAGE_PID### - explicit enough I guess (if not : id of the page where user are stored)
</li>
<li>
###STATUS_HEADER### - depends of the template
</li>
<li>
###STATUS_MESSAGE### - depends of the template
</li>
</ul>
<h2>
Wrap parts
</h2>
<ul>
<li>
###HEADER_VALID### - useful to define what to show/hide
</li>
<li>
###MESSAGE_VALID### - useful to define what to show/hide
</li>
<li>
###FORGOTP_VALID### - useful to define what to show/hide
</li>
<li>
###PERMALOGIN_VALID### - useful to define what to show/hide
</li>
</ul>
<h2>
felogin Language Markers (see pi/locallang.xlf)
</h2>
<ul>
<li>
###EMAIL_LABEL### - corresponding to 'your_email'
</li>
<li>
###FORGOT_PASSWORD### - corresponding to 'forgot_password'
</li>
<li>
###FORGOT_PASSWORD_BACKTOLOGIN### - corresponding to 'forgot_password_backToLogin'
</li>
<li>
###FORGOT_PASSWORD_ENTEREMAIL### - corresponding to 'forgot_password_enterEmail'
</li>
<li>
###LOGIN_LABEL### - corresponding to 'login'
</li>
<li>
###PASSWORD_LABEL### - corresponding to 'password'
</li>
<li>
###SEND_PASSWORD### - corresponding to 'send_password'
</li>
<li>
###USERNAME_LABEL### - corresponding to 'username'
</li>
</ul>
<!--###TEMPLATE_LOGIN###-->
###STATUS_HEADER###
###STATUS_MESSAGE###
<!-- ###LOGIN_FORM### -->
<form
action=
"###ACTION_URI###"
target=
"_top"
method=
"post"
onsubmit=
"###ON_SUBMIT###"
>
<fieldset>
<legend>
###LEGEND###
</legend>
<div>
<label
for=
"user"
>
###USERNAME_LABEL###
</label>
<input
type=
"text"
id=
"user"
name=
"user"
value=
""
/>
</div>
<div>
<label
for=
"pass"
>
###PASSWORD_LABEL###
</label>
<input
type=
"password"
id=
"pass"
name=
"pass"
value=
""
data-rsa-encryption=
""
/>
</div>
<!--###PERMALOGIN_VALID###-->
<div>
<label
for=
"permalogin"
>
###PERMALOGIN###
</label>
<input
name=
"permalogin"
value=
"0"
type=
"hidden"
###PERMALOGIN_HIDDENFIELD_ATTRIBUTES###
id=
"permaloginHiddenField"
/>
<input
name=
"permalogin"
value=
"1"
type=
"checkbox"
###PERMALOGIN_CHECKBOX_ATTRIBUTES###
id=
"permalogin"
onclick=
"document.getElementById('permaloginHiddenField').disabled = this.checked;"
/>
</div>
<!--###PERMALOGIN_VALID###-->
<div>
<input
type=
"submit"
name=
"submit"
value=
"###LOGIN_LABEL###"
/>
</div>
<div
class=
"felogin-hidden"
>
<input
type=
"hidden"
name=
"logintype"
value=
"login"
/>
<input
type=
"hidden"
name=
"pid"
value=
"###STORAGE_PID###"
/>
<input
type=
"hidden"
name=
"redirect_url"
value=
"###REDIRECT_URL###"
/>
<input
type=
"hidden"
name=
"###PREFIXID###[noredirect]"
value=
"###NOREDIRECT###"
/>
###EXTRA_HIDDEN###
</div>
</fieldset>
</form>
<!--###FORGOTP_VALID###-->
<p>
<!--###FORGOT_PASSWORD_LINK###-->
###FORGOT_PASSWORD###
<!--###FORGOT_PASSWORD_LINK###-->
</p>
<!--###FORGOTP_VALID###-->
<!-- ###LOGIN_FORM### -->
<!--###TEMPLATE_LOGIN###-->
<!--###TEMPLATE_LOGOUT###-->
###STATUS_HEADER###
###STATUS_MESSAGE###
<form
action=
"###ACTION_URI###"
target=
"_top"
method=
"post"
>
<fieldset>
<legend>
###LEGEND###
</legend>
<div>
<label>
###USERNAME_LABEL###
</label>
###USERNAME###
</div>
<div>
<input
type=
"submit"
name=
"submit"
value=
"###LOGOUT_LABEL###"
/>
</div>
<div
class=
"felogin-hidden"
>
<input
type=
"hidden"
name=
"logintype"
value=
"logout"
/>
<input
type=
"hidden"
name=
"pid"
value=
"###STORAGE_PID###"
/>
<input
type=
"hidden"
name=
"###PREFIXID###[noredirect]"
value=
"###NOREDIRECT###"
/>
</div>
</fieldset>
</form>
<!--###TEMPLATE_LOGOUT###-->
<!--###TEMPLATE_FORGOT###-->
###STATUS_HEADER###
###STATUS_MESSAGE###
<!-- ###FORGOT_FORM### -->
<form
action=
"###ACTION_URI###"
method=
"post"
>
<div
class=
"felogin-hidden"
>
<input
type=
"hidden"
name=
"tx_felogin_pi1[forgot_hash]"
value=
"###FORGOTHASH###"
/>
</div>
<fieldset>
<legend>
###LEGEND###
</legend>
<div>
<label
for=
"tx_felogin_pi1-forgot-email"
>
###DATA_LABEL###
</label>
<input
type=
"text"
name=
"###FORGOT_EMAIL###"
id=
"tx_felogin_pi1-forgot-email"
/>
</div>
<div>
<input
type=
"submit"
name=
"submit"
value=
"###SEND_PASSWORD###"
/>
</div>
</fieldset>
</form>
<!-- ###FORGOT_FORM### -->
<p>
###BACKLINK_LOGIN###
</p>
<!--###TEMPLATE_FORGOT###-->
<!--###TEMPLATE_CHANGEPASSWORD###-->
###STATUS_HEADER###
###STATUS_MESSAGE###
<!-- ###CHANGEPASSWORD_FORM### -->
<form
action=
"###ACTION_URI###"
method=
"post"
>
<fieldset>
<legend>
###LEGEND###
</legend>
<div>
<label
for=
"tx_felogin_pi1-newpassword1"
>
###NEWPASSWORD1_LABEL###
</label>
<input
type=
"password"
name=
"###NEWPASSWORD1###"
id=
"tx_felogin_pi1-newpassword1"
/>
</div>
<div>
<label
for=
"tx_felogin_pi1-newpassword2"
>
###NEWPASSWORD2_LABEL###
</label>
<input
type=
"password"
name=
"###NEWPASSWORD2###"
id=
"tx_felogin_pi1-newpassword2"
/>
</div>
<div>
<input
type=
"submit"
name=
"tx_felogin_pi1[changepasswordsubmit]"
value=
"###SEND_PASSWORD###"
/>
</div>
</fieldset>
</form>
<!-- ###CHANGEPASSWORD_FORM### -->
###BACKLINK_LOGIN###
<!--###TEMPLATE_CHANGEPASSWORD###-->
\ No newline at end of file
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment