Home

Password Reset

  • Send email for password reset using .resetPasswordForEmail while providing a redirectTo parameter
  • Email link will work as a magic link and log the user in then take them to the url specified in the redirectTo parameter
  • Create form to update the password and call the .updateUser method with the new password

Single Page Application (SPA)#

Sending password reset email#

Supabase provides a convenient method .resetPasswordForEmail to reset a user password. This method takes a parameter of redirectTo which we will use to pass an absolute URL to the update password page. This URL must be saved in your allowed Redirect URLs list found at Authentication > Redirect Configuration or it won't redirect the user.


_10
await supabase.auth.resetPasswordForEmail('hello@example.com', {
_10
redirectTo: 'http://example.com/account/update-password',
_10
})

The email link you receive will work like a magic link. This way when you click the link you will be logged into the website. Since we passed a redirect URL to the .resetPasswordForEmail method the user should be sent to the update password page.

Update Password#

To update the password we call the .updateUser method and pass along the new password to this method.


_10
await supabase.auth.updateUser({ password: new_password })

Server-Side Rendering (SSR)#

Sending password reset email#

Supabase provides a convenient method .resetPasswordForEmail to reset a user password. This method takes a parameter of redirectTo which we will use to pass an absolute URL to the callback page along with a query parameter to the update password page. This URL must be saved in your allowed Redirect URLs list found at Authentication > Redirect Configuration or it won't redirect the user.


_10
await supabase.auth.resetPasswordForEmail('hello@example.com', {
_10
redirectTo: 'http://example.com/api/auth/callback?next=/account/update-password',
_10
})

note

We are using next as our query parameter, but this can name whatever you like.

The email link you receive will behave like a magic link. When the link is clicked you will be sent to the redirectTo URL you specified that points to the path with the exchange code.

Exchange authorization code#

After redirecting to the server page, we need to retrieve the code from the query parameter called code and pass it to the .exchangeCodeForSession function.


_10
// api/auth/callback.ts
_10
_10
// The code is retrieved from the query parameter - use whichever mechanism is recommended
_10
// for your app/framework. This is just an example.
_10
const code = url.searchParams.get('code')
_10
_10
// call the Supabase API to exchange the code for a session
_10
await supabase.auth.exchangeCodeForSession(code)

note

The query parameter is always code for the authorization code returned from the Supabase API

We will also need to check for the next query parameter to redirect the user to the update password page.


_10
// api/auth/callback.ts
_10
_10
// The password page path is retrieved from the query parameter - use whichever mechanism is recommended
_10
// for your app/framework. This is just an example.
_10
const next = url.searchParams.get('next')
_10
_10
// using NextJS API response object in this example
_10
res.redirect(next)

Update Password#

To update the password we call the .updateUser method and pass along the new password to this method.


_10
await supabase.auth.updateUser({ password: new_password })