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