Skip to content
GitLab
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
Open sidebar
Xavier Bachelot
lemonldap-ng
Commits
0cf5c8ee
Commit
0cf5c8ee
authored
Dec 04, 2009
by
Clément OUDOT
Browse files
Apply patch for tabindex (close patch #314520)
parent
f55416d5
Changes
2
Hide whitespace changes
Inline
Side-by-side
modules/lemonldap-ng-portal/example/skins/pastel/login.tpl
View file @
0cf5c8ee
...
...
@@ -14,18 +14,18 @@
<table>
<tr><th><lang
en=
"Login"
fr=
"Identifiant"
/></th>
<td><input
name=
"user"
type=
"text"
value=
"<TMPL_VAR NAME="
LOGIN
"
>
"/>
</td>
<td><input
name=
"user"
type=
"text"
value=
"<TMPL_VAR NAME="
LOGIN
"
>
"
tabindex="1"
/>
</td>
</tr>
<tr><th><lang
en=
"Password"
fr=
"Mot de passe"
/></th>
<td><input
name=
"password"
type=
"password"
/></td>
<td><input
name=
"password"
type=
"password"
tabindex=
"2"
/></td>
</tr>
<tr><td
colspan=
"2"
>
<div
class=
"buttons"
>
<button
type=
"reset"
class=
"negative"
>
<button
type=
"reset"
class=
"negative"
tabindex=
"4"
>
<img
src=
"skins/common/cancel.png"
alt=
""
/>
<lang
en=
"Cancel"
fr=
"Annuler"
/>
</button>
<button
type=
"submit"
class=
"positive"
>
<button
type=
"submit"
class=
"positive"
tabindex=
"3"
>
<img
src=
"skins/common/accept.png"
alt=
""
/>
<lang
en=
"Connect"
fr=
"Se connecter"
/>
</button>
...
...
modules/lemonldap-ng-portal/example/skins/pastel/password.tpl
View file @
0cf5c8ee
...
...
@@ -5,23 +5,23 @@
<table>
<TMPL_IF
NAME=
"LOGIN"
>
<tr><th><lang
en=
"Login"
fr=
"Identifiant"
/></th>
<td><input
name=
"user"
type=
"text"
value=
"<TMPL_VAR NAME=LOGIN>"
/></td></tr>
<td><input
name=
"user"
type=
"text"
value=
"<TMPL_VAR NAME=LOGIN>"
tabindex=
"1"
/></td></tr>
</TMPL_IF>
<TMPL_IF
NAME=
"REQUIRE_OLDPASSWORD"
>
<tr><th><lang
en=
"Current password"
fr=
"Mot de passe actuel"
/></th>
<td><input
name=
"oldpassword"
type=
"password"
/></td></tr>
<td><input
name=
"oldpassword"
type=
"password"
tabindex=
"2"
/></td></tr>
</TMPL_IF>
<tr><th><lang
en=
"New password"
fr=
"Nouveau mot de passe"
/></th>
<td><input
name=
"newpassword"
type=
"password"
/></td></tr>
<td><input
name=
"newpassword"
type=
"password"
tabindex=
"3"
/></td></tr>
<tr><th><lang
en=
"Confirm password"
fr=
"Confirmez le mot de passe"
/></th>
<td><input
name=
"confirmpassword"
type=
"password"
/></td></tr>
<td><input
name=
"confirmpassword"
type=
"password"
tabindex=
"4"
/></td></tr>
<tr><td
colspan=
"2"
>
<div
class=
"buttons"
>
<button
type=
"reset"
class=
"negative"
>
<button
type=
"reset"
class=
"negative"
tabindex=
"6"
>
<img
src=
"skins/common/cancel.png"
alt=
""
/>
<lang
en=
"Cancel"
fr=
"Annuler"
/>
</button>
<button
type=
"submit"
class=
"positive"
>
<button
type=
"submit"
class=
"positive"
tabindex=
"5"
>
<img
src=
"skins/common/accept.png"
alt=
""
/>
<lang
en=
"Submit"
fr=
"Soumettre"
/>
</button>
...
...
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new 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