40 lines
1.2 KiB
Handlebars
40 lines
1.2 KiB
Handlebars
<!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>
|
||
{{ 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">Trouble signing in?</h1>
|
||
|
||
<p class="mb-2 leading-normal text-sky-900">Resetting your password is easy.</p>
|
||
|
||
<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>
|
||
<p>
|
||
<a
|
||
class="px-4 py-2 inline-block text-white bg-blue-600 border border-transparent rounded-r hover:bg-blue-700"
|
||
href="{{ url }}"
|
||
>
|
||
Reset Password
|
||
</a>
|
||
</p>
|
||
|
||
<p class="mb-2 leading-normal text-sky-900">
|
||
If you did not make this request then please ignore this email.
|
||
</p>
|
||
</div>
|
||
</div>
|
||
</section>
|
||
</body>
|
||
</html>
|