removed tabindex so that the natural is used

fixes: #32829
Signed-off-by: Erik Jan de Wit <erikjan.dewit@gmail.com>
This commit is contained in:
Erik Jan de Wit 2024-09-12 16:10:42 +02:00 committed by Alexander Schwartz
parent f5df3e8dac
commit 705a9f416f
5 changed files with 5 additions and 7 deletions

View file

@ -78,7 +78,7 @@
<div class="${properties.kcInputHelperTextClass}"> <div class="${properties.kcInputHelperTextClass}">
<div class="${properties.kcInputHelperTextItemClass}"> <div class="${properties.kcInputHelperTextItemClass}">
<span class="${properties.kcInputHelperTextItemTextClass}"> <span class="${properties.kcInputHelperTextItemTextClass}">
<a tabindex="3" href="${url.loginResetCredentialsUrl}">${msg("doForgotPassword")}</a> <a href="${url.loginResetCredentialsUrl}">${msg("doForgotPassword")}</a>
</span> </span>
</div> </div>
</div> </div>

View file

@ -15,8 +15,7 @@
<div id="kc-form-options"> <div id="kc-form-options">
<div class="${properties.kcFormOptionsWrapperClass!}"> <div class="${properties.kcFormOptionsWrapperClass!}">
<#if realm.resetPasswordAllowed> <#if realm.resetPasswordAllowed>
<span><a tabindex="5" <span><a href="${url.loginResetCredentialsUrl}">${msg("doForgotPassword")}</a></span>
href="${url.loginResetCredentialsUrl}">${msg("doForgotPassword")}</a></span>
</#if> </#if>
</div> </div>
</div> </div>

View file

@ -42,7 +42,7 @@
<#elseif section = "info" > <#elseif section = "info" >
<#if realm.password && realm.registrationAllowed && !registrationDisabled??> <#if realm.password && realm.registrationAllowed && !registrationDisabled??>
<div id="kc-registration"> <div id="kc-registration">
<span>${msg("noAccount")} <a tabindex="6" href="${url.registrationUrl}">${msg("doRegister")}</a></span> <span>${msg("noAccount")} <a href="${url.registrationUrl}">${msg("doRegister")}</a></span>
</div> </div>
</#if> </#if>
<#elseif section = "socialProviders" > <#elseif section = "socialProviders" >

View file

@ -36,8 +36,7 @@
<#if realm.password && realm.registrationAllowed && !registrationDisabled??> <#if realm.password && realm.registrationAllowed && !registrationDisabled??>
<div id="kc-registration-container" class="${properties.kcLoginFooterBand!}"> <div id="kc-registration-container" class="${properties.kcLoginFooterBand!}">
<div id="kc-registration" class="${properties.kcLoginFooterBandItem!}"> <div id="kc-registration" class="${properties.kcLoginFooterBandItem!}">
<span>${msg("noAccount")} <a tabindex="6" <span>${msg("noAccount")} <a href="${url.registrationUrl}">${msg("doRegister")}</a></span>
href="${url.registrationUrl}">${msg("doRegister")}</a></span>
</div> </div>
</div> </div>
</#if> </#if>

View file

@ -111,7 +111,7 @@
<#elseif section = "info"> <#elseif section = "info">
<#if realm.registrationAllowed && !registrationDisabled??> <#if realm.registrationAllowed && !registrationDisabled??>
<div id="kc-registration"> <div id="kc-registration">
<span>${msg("noAccount")} <a tabindex="6" href="${url.registrationUrl}">${msg("doRegister")}</a></span> <span>${msg("noAccount")} <a href="${url.registrationUrl}">${msg("doRegister")}</a></span>
</div> </div>
</#if> </#if>
</#if> </#if>