KEYCLOAK-74 error page placeholder
This commit is contained in:
parent
fac98c5fd6
commit
666aed0226
3 changed files with 38 additions and 1 deletions
|
@ -1 +1 @@
|
||||||
template not found
|
<#include "./theme/" + template.theme + "/error.ftl">
|
|
@ -294,6 +294,19 @@ a.zocial:before {
|
||||||
.rcue-login-register.reset .feedback {
|
.rcue-login-register.reset .feedback {
|
||||||
left: 35.7em;
|
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 {
|
.rcue-login-register.reset .form-area {
|
||||||
background-image: none;
|
background-image: none;
|
||||||
}
|
}
|
||||||
|
|
24
forms/src/main/resources/META-INF/resources/forms/theme/default/error.ftl
Executable file
24
forms/src/main/resources/META-INF/resources/forms/theme/default/error.ftl
Executable 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>
|
Loading…
Reference in a new issue