keycloak-themes/keyman/old.account/components/molecules/username.ftl

16 lines
404 B
Text
Raw Normal View History

2024-10-03 22:17:35 +00:00
<#import "/assets/icons/arrow-top-right-on-square.ftl" as icon>
<#import "/components/atoms/link.ftl" as link>
<#macro kw linkHref="" linkTitle="" name="">
<div class="flex items-center justify-center mb-4 space-x-2">
<span class="font-medium">${name}</span>
<@link.kw
color="primary"
href=linkHref
title=linkTitle
>
<@icon.kw />
</@link.kw>
</div>
</#macro>