Copy/pasta over login from the base theme
All checks were successful
continuous-integration/drone/push Build is passing

This commit is contained in:
decentral1se
2021-05-05 13:19:21 +02:00
parent c215e7997f
commit 1134b4572b
33 changed files with 2169 additions and 0 deletions

13
lumbung.space/login/error.ftl Executable file
View File

@ -0,0 +1,13 @@
<#import "template.ftl" as layout>
<@layout.registrationLayout displayMessage=false; section>
<#if section = "header">
${msg("errorTitle")}
<#elseif section = "form">
<div id="kc-error-message">
<p class="instruction">${message.summary?no_esc}</p>
<#if client?? && client.baseUrl?has_content>
<p><a id="backToApplication" href="${client.baseUrl}">${kcSanitize(msg("backToApplication"))?no_esc}</a></p>
</#if>
</div>
</#if>
</@layout.registrationLayout>