Hello,
I want to make simple form from which Admin will be able to invite some user by email, same way as you can invite user from Supabase Studio:
Form is simple:
Link in received email need to redirect to Sign Up page.
This invitation from Supabase sent only Confirmation link that only confirm the user but user dont have any login info and dont know how to login.
Thank you in advance
Hi Zoran
,
You can get something close to this flow, but it would not be “just a simple form” because you need some custom logic on top of Supabase’s default confirmation email.
The general idea would be:
- Use the form in WeWeb to call a Supabase Edge Function / backend endpoint that creates the user and generates a magic link or one‑time token for that email.
- Send a custom email where the button points to your WeWeb signup page (for example
https://your-app.com/signup?token=...), and on that page you read the token, validate it with Supabase, and then let the user set their password and access the app.
You could experiment with something along those lines and see if it fits your use case, let me know if this helps 