19 lines
521 B
HTML
19 lines
521 B
HTML
<!doctype html>
|
|
<html lang="en">
|
|
<body style="font-family: Arial, sans-serif; line-height: 1.5; color: #111;">
|
|
{{email_header}}
|
|
<p>{{greeting}}</p>
|
|
<p>Your access has been set up.</p>
|
|
<p><strong>Username:</strong> {{username}}</p>
|
|
<p>
|
|
<a href="{{login_url}}">Go to login</a>
|
|
</p>
|
|
<p>
|
|
If you do not know your password, you can reset it here:
|
|
<a href="{{reset_url}}">Forgot password</a>
|
|
</p>
|
|
<p>Best regards<br>{{app_name}}</p>
|
|
{{email_footer}}
|
|
</body>
|
|
</html>
|