28 lines
934 B
Handlebars
28 lines
934 B
Handlebars
<!DOCTYPE html>
|
||
<html lang="en">
|
||
<head>
|
||
<meta charset="UTF-8">
|
||
<title>Welcome to {{ service_name }}</title>
|
||
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||
<style>
|
||
{{ style }}
|
||
</style>
|
||
</head>
|
||
<body>
|
||
<section class="debug-screens">
|
||
<div class="container p-8 mx-auto mt-12 bg-white">
|
||
<div class="rounded-lg">
|
||
<h1 class="mb-3 text-xl font-semibold tracking-tight text-sky-600">Hi {{ login }}</h1>
|
||
|
||
<p class="mb-2 leading-normal text-sky-900">
|
||
Welcome to {{ service_name }} – we’re excited to have you on board, and we’d love to say thank you on behalf
|
||
of our whole company for choosing us.
|
||
</p>
|
||
<p class="mb-2 leading-normal text-sky-900">Take care,</p>
|
||
<p class="mb-2 leading-normal text-sky-900">{{ signature }}</p>
|
||
</div>
|
||
</div>
|
||
</section>
|
||
</body>
|
||
</html>
|