Hi all,
I’m using Supabase as an external database and user auth. To reset a user password, Supabase sends the user an email with a URL redirect that contains an auth token.
The process should be:
- User receives an email with a password reset link
- Link takes them to the Bubble app with a password reset form
- Page extracts the URL parameters - they contain the user auth token
- User posts the new password via API to supabase. Call includes the auth token from 3
Has anyone done something like this before / is it possible? Any advice and help are appreciated.