2022-05-09 16:17:27 +02:00
|
|
|
|
<!DOCTYPE html>
|
|
|
|
|
<html lang="en">
|
|
|
|
|
<head>
|
|
|
|
|
<meta charset="UTF-8">
|
|
|
|
|
<title>Reset password</title>
|
|
|
|
|
<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">
|
|
|
|
|
<h1 class="mb-3 text-xl font-semibold tracking-tight text-sky-600">Trouble signing in?</h1>
|
|
|
|
|
|
|
|
|
|
<p class="mb-2 leading-normal text-sky-900">Resetting your password is easy.</p>
|
|
|
|
|
|
2022-11-05 01:08:45 +01:00
|
|
|
|
<p class="mb-2 leading-normal text-sky-900">
|
|
|
|
|
Just press the button below and follow the instructions.
|
|
|
|
|
We’ll have you up and running in no time.
|
|
|
|
|
</p>
|
2022-05-09 16:17:27 +02:00
|
|
|
|
<p>
|
|
|
|
|
<a
|
|
|
|
|
class="px-4 py-2 inline-block text-white bg-blue-600 border border-transparent rounded-r hover:bg-blue-700"
|
2022-11-05 01:08:45 +01:00
|
|
|
|
href="{{ url }}"
|
2022-05-09 16:17:27 +02:00
|
|
|
|
>
|
|
|
|
|
Reset Password
|
|
|
|
|
</a>
|
|
|
|
|
</p>
|
|
|
|
|
|
2022-11-05 01:08:45 +01:00
|
|
|
|
<p class="mb-2 leading-normal text-sky-900">
|
|
|
|
|
If you did not make this request then please ignore this email.
|
|
|
|
|
</p>
|
2022-05-09 16:17:27 +02:00
|
|
|
|
</div>
|
|
|
|
|
</div>
|
|
|
|
|
</section>
|
|
|
|
|
</body>
|
|
|
|
|
</html>
|