-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* Spsh 1371 - Performance optimization (#97) * Spsh 1158 test loadtest drivers (#80) configure keycloak for scaling * DBP-1079-keyloak-headless-and-non-headless-service (#82) DBP-1079-keyloak-headless-and-non-headless-service (#82) * add loa mapping for silver * Spsh 740 (#73) SPSH-740 * make kc stateful * enable autoscaling * dbg: undo statefulset * increase requests, remove cpu limit * dev: resource config * test lower thread limit * Revert "enable autoscaling" This reverts commit 24355cc. * add threadpool to deployment * env should be string * env should be string #2 --------- Co-authored-by: aimee-889 <[email protected]> Co-authored-by: Kristoff Kiefer <[email protected]> * SPSH-1612 (#101) * implmementing paste otp feature and automaitc numbers keypad on mobile * SPSH-1612: update pi provider (min, max, pattern for OTP form) * adding min max to otp input fields * SPSH-1612: update PI provider (pattern, onkeydown) --------- Co-authored-by: niklaskoopmann <[email protected]> * Spsh 1310 custom error template (#102) * DBP-1147-fix-typo (#100) DBP-1147-fix-typo (#100) * add logout-button to error-template * ensure trailing slash * make error message generic * update error message --------- Co-authored-by: aimee-889 <[email protected]> * SPSH-1648 (#107) * implementing one input field to otp mask * improving style of otp input field * autofocus auf otp input field und text anpassung * default 2FA text Anpassung --------- Co-authored-by: clauyan <[email protected]> Co-authored-by: aimee-889 <[email protected]> Co-authored-by: Alexander Ungefug <[email protected]> Co-authored-by: niklaskoopmann <[email protected]>
- Loading branch information
1 parent
7a29cdf
commit 6316a94
Showing
10 changed files
with
37 additions
and
9 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Binary file not shown.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,21 @@ | ||
<#import "template.ftl" as layout> | ||
<@layout.registrationLayout displayMessage=false; section> | ||
<#if section = "header"> | ||
${kcSanitize(msg("errorTitle"))?no_esc} | ||
<#elseif section = "form"> | ||
<div id="kc-error-message"> | ||
<p class="instruction">${kcSanitize(msg("loginError"))?no_esc}</p> | ||
<form id="kc-form-logout" | ||
<#if client?? && client.baseUrl?has_content> | ||
action="${client.baseUrl?ensure_ends_with("/")}api/auth/logout" | ||
<#else> | ||
action="/realms/${realm.name}/protocol/openid-connect/logout" | ||
</#if> | ||
> | ||
<div id="kc-form-buttons" class="${properties.kcFormGroupClass!}"> | ||
<input tabindex="1" class="${properties.kcButtonClass!} ${properties.kcButtonPrimaryClass!} ${properties.kcButtonBlockClass!} ${properties.kcButtonLargeClass!}" name="logout" id="kc-logout" data-testid="logout-button" type="submit" value="${msg("tryAgain")}"/> | ||
</div> | ||
</form> | ||
</div> | ||
</#if> | ||
</@layout.registrationLayout> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -276,4 +276,4 @@ | |
<div class="dark-footer"></div> | ||
</body> | ||
</html> | ||
</#macro> | ||
</#macro> |