-
Notifications
You must be signed in to change notification settings - Fork 7
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
3e7c878
commit 92730ab
Showing
46 changed files
with
4,119 additions
and
2 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
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
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,4 @@ | ||
parent=keycloak.v2 | ||
|
||
logo=/public/entando-logo.svg | ||
|
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
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,3 @@ | ||
parent=keycloak.v2 | ||
|
||
logo=/public/entando-logo.svg |
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 @@ | ||
parent=base |
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,55 @@ | ||
<#import "template.ftl" as layout> | ||
<@layout.registrationLayout displayInfo=social.displayInfo; section> | ||
<#if section = "title"> | ||
${msg("loginTitle",(realm.displayName!''))} | ||
<#elseif section = "form"> | ||
<form class="LoginPage__form" action="${url.loginAction}" method="post"> | ||
<div class="LoginPage__formGroup"> | ||
<div class="LoginPage__inputGroup"> | ||
<label class="LoginPage__label">${msg("username")}</label> | ||
<input type="text" name="username" tabindex="1" class="LoginPage__input" id="username" placeholder="Username" /> | ||
</div> | ||
<div class="LoginPage__inputGroup extra-margin"> | ||
<label class="LoginPage__label">${msg("password")}</label> | ||
<input type="password" name="password" tabindex="2" class="LoginPage__input" id="password" placeholder="Password" /> | ||
</div> | ||
<#if message?has_content> | ||
<div class="LoginPage__error">${message.summary?no_esc}</div> | ||
<div class="LoginPage__actionGroup" style="margin-top: 0;"> | ||
<div></div> | ||
<button class="LoginPage__button" type="submit">${msg("doLogIn")}</button> | ||
<div class="LoginPage__loading"> | ||
<div class="LoginPage__spinner" /> | ||
</div> | ||
</div> | ||
<#else> | ||
<div class="LoginPage__actionGroup"> | ||
<div></div> | ||
<button class="LoginPage__button" type="submit">${msg("doLogIn")}</button> | ||
<div class="LoginPage__loading"> | ||
<div class="LoginPage__spinner" /> | ||
</div> | ||
</div> | ||
</#if> | ||
</div> | ||
<#if social.providers??> | ||
<div class="LoginPage__social"> | ||
${msg("socialLogin")} | ||
</div> | ||
</#if> | ||
<div> | ||
<#if social.providers??> | ||
<div id="social-providers"> | ||
<div id="kc-social-providers"> | ||
<ul class="list horizontal"> | ||
<#list social.providers as p> | ||
<li><a href="${p.loginUrl}" id="zocial-${p.alias}" class="button zocial ${p.providerId}">${p.displayName}</a></li> | ||
</#list> | ||
</ul> | ||
</div> | ||
</div> | ||
</#if> | ||
</div> | ||
</form> | ||
</#if> | ||
</@layout.registrationLayout> |
Oops, something went wrong.