mirror of
https://github.com/pocket-id/pocket-id.git
synced 2025-12-28 17:25:04 +03:00
17 lines
728 B
Cheetah
17 lines
728 B
Cheetah
{{ define "base" }}
|
|
<div class="header">
|
|
<div class="logo">
|
|
<img src="{{ .LogoURL }}" alt="{{ .AppName }}" width="32" height="32" style="width: 32px; height: 32px; max-width: 32px;"/>
|
|
<h1>{{ .AppName }}</h1>
|
|
</div>
|
|
<div class="warning">Warning</div>
|
|
</div>
|
|
<div class="content">
|
|
<h2>API Key Expiring Soon</h2>
|
|
<p>
|
|
Hello {{ .Data.Name }},<br/><br/>
|
|
This is a reminder that your API key <strong>{{ .Data.ApiKeyName }}</strong> will expire on <strong>{{ .Data.ExpiresAt.Format "2006-01-02 15:04:05 MST" }}</strong>.<br/><br/>
|
|
Please generate a new API key if you need continued access.
|
|
</p>
|
|
</div>
|
|
{{ end }} |