2021-10-26 21:34:21 +00:00
|
|
|
---
|
|
|
|
bodyClass: bg-gray-postmark-lighter
|
|
|
|
---
|
|
|
|
|
2022-05-14 10:22:06 +00:00
|
|
|
<extends src="app/mailers/renderer/html/layouts/main.html">
|
2021-10-26 21:34:21 +00:00
|
|
|
<block name="template">
|
|
|
|
<table class="email-wrapper w-full bg-gray-postmark-lighter font-sans">
|
|
|
|
<tr>
|
|
|
|
<td align="center">
|
|
|
|
<table class="email-content w-full">
|
2022-05-14 10:22:06 +00:00
|
|
|
<component src="app/mailers/renderer/html/components/header.html"></component>
|
2021-10-26 21:34:21 +00:00
|
|
|
<tr>
|
|
|
|
<td class="email-body w-full">
|
|
|
|
<table align="center" class="email-body_inner w-570 bg-white mx-auto sm:w-full">
|
|
|
|
<tr>
|
|
|
|
<td class="px-45 py-24">
|
|
|
|
<div class="text-base">
|
|
|
|
<h1 class="mt-0 text-2xl font-bold text-left text-gray-postmark-darker">
|
2021-10-30 12:31:22 +00:00
|
|
|
Hi {{ name }},
|
2021-10-26 21:34:21 +00:00
|
|
|
</h1>
|
|
|
|
<p class="mt-6 mb-20 text-base leading-24 text-gray-postmark-dark">
|
2021-10-31 15:57:17 +00:00
|
|
|
You recently requested to reset your password for your
|
|
|
|
{{ page.company.product }} account. Use the button below to reset it.
|
2021-10-26 21:34:21 +00:00
|
|
|
<strong
|
|
|
|
>This password reset is only valid for the next 24
|
|
|
|
hours.</strong
|
|
|
|
>
|
|
|
|
</p>
|
|
|
|
<table align="center" class="w-full text-center my-30 mx-auto">
|
|
|
|
<tr>
|
|
|
|
<td align="center">
|
|
|
|
<table class="w-full">
|
|
|
|
<tr>
|
|
|
|
<td align="center" class="text-base">
|
|
|
|
<a
|
2021-10-30 12:31:22 +00:00
|
|
|
href="{{ action_url }}"
|
2021-10-26 21:34:21 +00:00
|
|
|
class="button button--green"
|
|
|
|
target="_blank"
|
|
|
|
>
|
2021-11-01 23:13:30 +00:00
|
|
|
Reset your password
|
|
|
|
</a>
|
2021-10-26 21:34:21 +00:00
|
|
|
</td>
|
|
|
|
</tr>
|
|
|
|
</table>
|
|
|
|
</td>
|
|
|
|
</tr>
|
|
|
|
</table>
|
|
|
|
<p class="mt-6 mb-20 text-base leading-24 text-gray-postmark-dark">
|
|
|
|
If you did not request a password reset, you can safely ignore this
|
|
|
|
email.
|
|
|
|
</p>
|
|
|
|
<table class="body-sub">
|
|
|
|
<tr>
|
|
|
|
<td>
|
|
|
|
<p
|
|
|
|
class="
|
|
|
|
mt-6
|
|
|
|
mb-20
|
|
|
|
text-xs
|
|
|
|
leading-24
|
|
|
|
text-gray-postmark-dark
|
|
|
|
"
|
|
|
|
>
|
|
|
|
If you're having trouble with the button above, copy and
|
|
|
|
paste the URL below into your web browser.
|
|
|
|
</p>
|
|
|
|
<p
|
|
|
|
class="
|
|
|
|
mt-6
|
|
|
|
mb-20
|
|
|
|
text-xs
|
|
|
|
leading-24
|
|
|
|
text-gray-postmark-dark
|
|
|
|
"
|
|
|
|
>
|
2021-10-30 12:31:22 +00:00
|
|
|
{{ action_url }}
|
2021-10-26 21:34:21 +00:00
|
|
|
</p>
|
|
|
|
</td>
|
|
|
|
</tr>
|
|
|
|
</table>
|
|
|
|
</div>
|
|
|
|
</td>
|
|
|
|
</tr>
|
|
|
|
</table>
|
|
|
|
</td>
|
|
|
|
</tr>
|
2022-05-14 10:22:06 +00:00
|
|
|
<!--<component src="app/mailers/renderer/html/components/footer.html"></component>-->
|
2021-10-26 21:34:21 +00:00
|
|
|
</table>
|
|
|
|
</td>
|
|
|
|
</tr>
|
|
|
|
</table>
|
|
|
|
</block>
|
|
|
|
</extends>
|