26 lines
631 B
Text
26 lines
631 B
Text
<heml>
|
|
<head>
|
|
<subject>You have been invited!</subject>
|
|
<style>
|
|
body {
|
|
text-align: center;
|
|
}
|
|
.button {
|
|
background: #366dc7;
|
|
}
|
|
.logo {
|
|
margin: 25px auto;
|
|
width: 100px;
|
|
height: auto;
|
|
}
|
|
</style>
|
|
</head>
|
|
<body>
|
|
<container>
|
|
<img class='logo' src='{{ .SiteURL }}/images/logo.png' />
|
|
<h2>You have been invited</h2>
|
|
<p>You have been invited to create a user on {{ .SiteURL }}</p>
|
|
<button class='button' href="{{ .ConfirmationURL }}" style="margin: auto;">Accept the invite</button>
|
|
</container>
|
|
</body>
|
|
</heml>
|