KEYCLOAK-74 error page placeholder

This commit is contained in:
vrockai 2013-09-27 17:49:36 +02:00
parent fac98c5fd6
commit 666aed0226
3 changed files with 38 additions and 1 deletions

View file

@ -1 +1 @@
template not found
<#include "./theme/" + template.theme + "/error.ftl">

View file

@ -294,6 +294,19 @@ a.zocial:before {
.rcue-login-register.reset .feedback {
left: 35.7em;
}
.rcue-login-register .background-area p.instruction.instruction.second {
color: #999999;
}
.rcue-login-register .background-area p.instruction + .instruction.second {
margin-top: -1.23077em;
}
.rcue-login-register .background-area a.link-right {
float: right;
font-size: 1.3em;
}
.rcue-login-register.reset .form-area {
background-image: none;
}

View file

@ -0,0 +1,24 @@
<#-- TODO: Only a placeholder, implementation needed -->
<#import "template-login-action.ftl" as layout>
<@layout.registrationLayout bodyClass="reset"; section>
<#if section = "title">
We're sorry...
<#elseif section = "header">
We're <strong>sorry</strong> ...
<#elseif section = "form">
<p class="instruction">Something happened and we could not process your request.</p>
<p class="instruction second">Please make sure the URL you entered is correct.</p>
<a href="saas-login.html" class="link-right">Go to the homepage »</a>
<#elseif section = "info" >
<div id="info">
</div>
</#if>
</@layout.registrationLayout>