netlify-cms-react-starter/public/admin/email-templates/confirmation.heml
2018-01-29 13:11:28 +10:00

26 lines
611 B
Text

<heml>
<head>
<subject>Confirm your signup</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>Confirm your signup</h2>
<p>Follow this link to confirm your account:</p>
<button class='button' href="{{ .ConfirmationURL }}" style="margin: auto;">Confirm your mail</button>
</container>
</body>
</heml>