mirror of
https://github.com/zitadel/zitadel.git
synced 2025-12-03 13:13:17 +00:00
19 lines
755 B
HTML
19 lines
755 B
HTML
{{define "footer"}}
|
|
<footer>
|
|
{{ if hasWatermark .LabelPolicy }}
|
|
<span class="watermark" >
|
|
<span class="powered">{{t "Footer.PoweredBy"}}</span>
|
|
<span class="lgn-logo-watermark" sourcelight="logo-light.svg" sourcedark="logo-dark.svg" alt="logo"></span>
|
|
</span>
|
|
{{end}}
|
|
<span class="fill-space"></span>
|
|
{{ if .TOSLink }}
|
|
<a href="{{.TOSLink}}" rel="noopener noreferrer" target="_blank" alt="TOS">{{t "Footer.Tos"}}</a>
|
|
{{ end }}
|
|
{{ if .PrivacyLink }}
|
|
<a href="{{.PrivacyLink}}" rel="noopener noreferrer" target="_blank" alt="Privacy Policy">{{t "Footer.PrivacyPolicy"}}</a>
|
|
{{end}}
|
|
<a href="{{t "Footer.HelpLink"}}" target="_black" alt="Help">{{t "Footer.Help"}}</a>
|
|
</footer>
|
|
{{end}}
|