|
|
@ -33,7 +33,7 @@ |
|
|
|
<#if usernameEditDisabled??> |
|
|
|
<input tabindex="1" id="username" class="${properties.kcInputClass!}" name="username" value="${(login.username!'')}" placeholder=${msg("usernameOrEmail")} type="text" disabled /> |
|
|
|
<#else> |
|
|
|
<input tabindex="1" id="username" class="${properties.kcInputClass!}" name="username" value="${(login.username!'')}" placeholder=${msg("usernameOrEmail")} type="text" autofocus autocomplete="off" |
|
|
|
<input tabindex="1" id="username" class="${properties.kcInputClass!}" name="username" value="${(login.username!'')}" placeholder=${msg("usernameOrEmail")} type="text" autofocus autocomplete="username" |
|
|
|
aria-invalid="<#if messagesPerField.existsError('username','password')>true</#if>" |
|
|
|
/> |
|
|
|
<#if messagesPerField.existsError('username','password')> |
|
|
@ -48,7 +48,7 @@ |
|
|
|
|
|
|
|
<div class="${properties.kcFormGroupClass!}"> |
|
|
|
|
|
|
|
<input tabindex="2" id="password" class="${properties.kcInputClass!}" name="password" type="password" placeholder=${msg("password")} autocomplete="off" |
|
|
|
<input tabindex="2" id="password" class="${properties.kcInputClass!}" name="password" type="password" placeholder=${msg("password")} |
|
|
|
aria-invalid="<#if messagesPerField.existsError('username','password')>true</#if>" |
|
|
|
/> |
|
|
|
<label class="login-form-input-label">${msg("password")}</label> |
|
|
@ -60,8 +60,8 @@ |
|
|
|
</div> |
|
|
|
|
|
|
|
|
|
|
|
<#if realm.password && social.providers??> |
|
|
|
<div id="kc-social-providers" class="${properties.kcFormSocialAccountSectionClass!}"> |
|
|
|
<#if realm.password && social.providers??> |
|
|
|
<div id="kc-social-providers" class="${properties.kcFormSocialAccountSectionClass!}"> |
|
|
|
<div class="separate-container"> |
|
|
|
<div class="separator"></div> |
|
|
|
<div class="separate-text">${msg("identity-provider-login-label")} </div> |
|
|
@ -90,12 +90,26 @@ |
|
|
|
</a> |
|
|
|
</#list> |
|
|
|
</ul> |
|
|
|
</div> |
|
|
|
</#if> |
|
|
|
</div> |
|
|
|
</#if> |
|
|
|
|
|
|
|
<div class="signup-terms login-signup-terms">${msg("signinTerms")}</div> |
|
|
|
<#if realm.internationalizationEnabled && locale.supported?size gt 1> |
|
|
|
<#if locale.current="Deutsch"> |
|
|
|
<div class="signup-terms login-signup-terms"> |
|
|
|
Mit der Registrierung erklären Sie sich mit den |
|
|
|
<a href="https://app.jplus-pilot.com/legal/tos_de.html">Nutzungsbedingungen</a> und der |
|
|
|
<a href="https://app.jplus-pilot.com/legal/gdpr_de.html">Datenschutzerklärung</a> von Juice einverstanden. |
|
|
|
</div> |
|
|
|
<#else> |
|
|
|
<div class="signup-terms login-signup-terms"> |
|
|
|
By signing up, you agree to Juice's |
|
|
|
<a href="https://app.jplus-pilot.com/legal/tos_en.html">ToS</a> and |
|
|
|
<a href=" https://app.jplus-pilot.com/legal/gdpr_en.html">Privacy</a> |
|
|
|
</div> |
|
|
|
</#if> |
|
|
|
</#if> |
|
|
|
|
|
|
|
<div> |
|
|
|
<div> |
|
|
|
<div class="${properties.kcFormGroupClass!} ${properties.kcFormSettingClass!}"> |
|
|
|
<div id="kc-form-options"> |
|
|
|
<#if realm.resetPasswordAllowed> |
|
|
@ -110,11 +124,11 @@ |
|
|
|
</div> |
|
|
|
</div> |
|
|
|
</#if> |
|
|
|
</div> |
|
|
|
</div> |
|
|
|
|
|
|
|
</form> |
|
|
|
</#if> |
|
|
|
</div> |
|
|
|
</div> |
|
|
|
</div> |
|
|
|
</#if> |
|
|
|
</@layout.registrationLayout> |
|
|
|