44 lines
1.2 KiB
HTML
44 lines
1.2 KiB
HTML
<x-main>
|
|
<div class="bg-zinc-50 sm:px-4 font-sans">
|
|
<table align="center">
|
|
<tr>
|
|
<td class="w-[552px] max-w-full">
|
|
<x-header />
|
|
<table class="w-full">
|
|
<tr>
|
|
<td class="p-12 sm:px-6 text-base text-zinc-800 bg-white rounded shadow-sm">
|
|
<p class="leading-6 mt-0">
|
|
Hi @{{ $user->name }},
|
|
</p>
|
|
|
|
<p class="leading-6">
|
|
Please confirm your email address by clicking the button below:
|
|
</p>
|
|
|
|
<x-spacer height="24px" />
|
|
|
|
<div class="text-center">
|
|
<x-button href="@{{ $url }}">
|
|
Verify Email Address →
|
|
</x-button>
|
|
</div>
|
|
|
|
<x-spacer height="24px" />
|
|
|
|
<p class="leading-6">
|
|
If you did not create an account, you can safely ignore this email.
|
|
</p>
|
|
<p class="leading-6 mb-0">
|
|
Best regards,
|
|
<br />
|
|
The TryPost Team
|
|
</p>
|
|
</td>
|
|
</tr>
|
|
</table>
|
|
<x-footer />
|
|
</td>
|
|
</tr>
|
|
</table>
|
|
</div>
|
|
</x-main>
|