23 lines
622 B
Handlebars
23 lines
622 B
Handlebars
<!DOCTYPE html>
|
||
<html>
|
||
|
||
<head>
|
||
<meta charset="UTF-8" />
|
||
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
|
||
<link href="https://unpkg.com/tailwindcss@^1.0/dist/tailwind.min.css" rel="stylesheet">
|
||
</head>
|
||
<div>
|
||
<p>Hello {{name}},</p>
|
||
<br />
|
||
<p>Follow this link to verify your email address.</p>
|
||
<a href="https://{{environment}}.encoach.com/action?mode=signIn&continueUrl={{email}}&oobCode={{code}}">Verify
|
||
account</a>
|
||
<br />
|
||
<br />
|
||
<p>If you didn’t ask to verify this address, you can ignore this email.</p>
|
||
<br />
|
||
<p>Thanks,</p>
|
||
<p>Your EnCoach team</p>
|
||
</div>
|
||
|
||
</html> |