-
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
af1c3bc
commit 5fb440c
Showing
45 changed files
with
4,114 additions
and
33 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
.navbar-pf .navbar-brand { | ||
background: url('../img/entando-logo.svg') no-repeat 0px 15px; | ||
} |
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 | ||
import=common/keycloak | ||
styles=node_modules/patternfly/dist/css/patternfly.min.css node_modules/patternfly/dist/css/patternfly-additions.min.css node_modules/select2/select2.css css/styles.css lib/angular/treeview/css/angular.treeview.css node_modules/text-security/dist/text-security.css css/logo.css |
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.