Installation
We'll need a way to create your account as well. We decided to keep the authentication lean and only support email & password for now, but you can add any social logins yourself. If there is general interest, we might add tutorials for magic link & social logins.
- In supabase, head over to Email Templates: Auth Templates and replace the current body of the Confirm Signup email template with the following and hit save afterwards.
<h2>Confirm your signup</h2>
<p>Follow this link to confirm your user:</p>
<p>
<a
href="{{ .SiteURL }}/api/auth/confirm-hash?token_hash={{ .TokenHash }}&type=signup"
>Confirm your mail</a
>
</p>
This will allow us to safely confirm whether a user really signed up for our services.