mirror of
https://github.com/pocket-id/pocket-id.git
synced 2025-12-11 15:53:04 +03:00
17 lines
709 B
Cheetah
17 lines
709 B
Cheetah
{{ define "base" }}
|
|
<div class="header">
|
|
<div class="logo">
|
|
<img src="{{ .LogoURL }}" alt="{{ .AppName }}"/>
|
|
<h1>{{ .AppName }}</h1>
|
|
</div>
|
|
</div>
|
|
<div class="content">
|
|
<h2>Login Code</h2>
|
|
<p class="message">
|
|
Click the button below to sign in to {{ .AppName }} with a login code.</br>Or visit <a href="{{ .Data.LoginLink }}">{{ .Data.LoginLink }}</a> and enter the code <strong>{{ .Data.Code }}</strong>.</br></br>This code expires in 15 minutes.
|
|
</p>
|
|
<div class="button-container">
|
|
<a class="button" href="{{ .Data.LoginLinkWithCode }}" class="button">Sign In</a>
|
|
</div>
|
|
</div>
|
|
{{ end -}} |