mirror of
https://github.com/keycloak/keycloak.git
synced 2026-01-25 16:42:34 +00:00
@@ -1,5 +1,4 @@
|
||||
<html>
|
||||
<body>
|
||||
<#import "template.ftl" as layout>
|
||||
<@layout.emailLayout>
|
||||
${kcSanitize(msg("emailTestBodyHtml",realmName))?no_esc}
|
||||
</body>
|
||||
</html>
|
||||
</@layout.emailLayout>
|
||||
|
||||
@@ -1,5 +1,4 @@
|
||||
<html>
|
||||
<body>
|
||||
<#import "template.ftl" as layout>
|
||||
<@layout.emailLayout>
|
||||
${kcSanitize(msg("emailVerificationBodyCodeHtml",code))?no_esc}
|
||||
</body>
|
||||
</html>
|
||||
</@layout.emailLayout>
|
||||
|
||||
@@ -1,5 +1,4 @@
|
||||
<html>
|
||||
<body>
|
||||
<#import "template.ftl" as layout>
|
||||
<@layout.emailLayout>
|
||||
${kcSanitize(msg("emailVerificationBodyHtml",link, linkExpiration, realmName, linkExpirationFormatter(linkExpiration)))?no_esc}
|
||||
</body>
|
||||
</html>
|
||||
</@layout.emailLayout>
|
||||
|
||||
@@ -1,5 +1,4 @@
|
||||
<html>
|
||||
<body>
|
||||
<#import "template.ftl" as layout>
|
||||
<@layout.emailLayout>
|
||||
${kcSanitize(msg("eventLoginErrorBodyHtml",event.date,event.ipAddress))?no_esc}
|
||||
</body>
|
||||
</html>
|
||||
</@layout.emailLayout>
|
||||
|
||||
@@ -1,5 +1,4 @@
|
||||
<html>
|
||||
<body>
|
||||
<#import "template.ftl" as layout>
|
||||
<@layout.emailLayout>
|
||||
${kcSanitize(msg("eventRemoveTotpBodyHtml",event.date, event.ipAddress))?no_esc}
|
||||
</body>
|
||||
</html>
|
||||
</@layout.emailLayout>
|
||||
|
||||
@@ -1,5 +1,4 @@
|
||||
<html>
|
||||
<body>
|
||||
<#import "template.ftl" as layout>
|
||||
<@layout.emailLayout>
|
||||
${kcSanitize(msg("eventUpdatePasswordBodyHtml",event.date, event.ipAddress))?no_esc}
|
||||
</body>
|
||||
</html>
|
||||
</@layout.emailLayout>
|
||||
|
||||
@@ -1,5 +1,4 @@
|
||||
<html>
|
||||
<body>
|
||||
<#import "template.ftl" as layout>
|
||||
<@layout.emailLayout>
|
||||
${kcSanitize(msg("eventUpdateTotpBodyHtml",event.date, event.ipAddress))?no_esc}
|
||||
</body>
|
||||
</html>
|
||||
</@layout.emailLayout>
|
||||
|
||||
@@ -2,8 +2,7 @@
|
||||
<#assign requiredActionsText><#if requiredActions??><#list requiredActions><#items as reqActionItem>${msg("requiredAction.${reqActionItem}")}<#sep>, </#sep></#items></#list></#if></#assign>
|
||||
</#outputformat>
|
||||
|
||||
<html>
|
||||
<body>
|
||||
<#import "template.ftl" as layout>
|
||||
<@layout.emailLayout>
|
||||
${kcSanitize(msg("executeActionsBodyHtml",link, linkExpiration, realmName, requiredActionsText, linkExpirationFormatter(linkExpiration)))?no_esc}
|
||||
</body>
|
||||
</html>
|
||||
</@layout.emailLayout>
|
||||
|
||||
@@ -1,5 +1,4 @@
|
||||
<html>
|
||||
<body>
|
||||
<#import "template.ftl" as layout>
|
||||
<@layout.emailLayout>
|
||||
${kcSanitize(msg("identityProviderLinkBodyHtml", identityProviderAlias, realmName, identityProviderContext.username, link, linkExpiration, linkExpirationFormatter(linkExpiration)))?no_esc}
|
||||
</body>
|
||||
</html>
|
||||
</@layout.emailLayout>
|
||||
|
||||
@@ -1,5 +1,4 @@
|
||||
<html>
|
||||
<body>
|
||||
<#import "template.ftl" as layout>
|
||||
<@layout.emailLayout>
|
||||
${kcSanitize(msg("passwordResetBodyHtml",link, linkExpiration, realmName, linkExpirationFormatter(linkExpiration)))?no_esc}
|
||||
</body>
|
||||
</html>
|
||||
</@layout.emailLayout>
|
||||
|
||||
@@ -0,0 +1,7 @@
|
||||
<#macro emailLayout>
|
||||
<html>
|
||||
<body>
|
||||
<#nested>
|
||||
</body>
|
||||
</html>
|
||||
</#macro>
|
||||
Reference in New Issue
Block a user