Home

Login With Email

Overview#

Setting up Email logins for your Supabase application.

Configure email settings#

  1. For Site URL, enter the final (hosted) URL of your app.
  2. For Auth Providers, enable email provider.

Self hosting

For self-hosting, you can update your project configuration using the files and environment variables provided. See the self-hosting docs for details.

Add login code to your client app#

When your user signs in, call signInWithPassword() with their email address and password:

async function signInWithEmail() {
  const { data, error } = await supabase.auth.signInWithPassword({
    email: 'example@email.com',
    password: 'example-password',
  })
}

When your user signs out, call signOut() to remove them from the browser session and any objects from localStorage:

async function signOut() {
  const { error } = await supabase.auth.signOut()
}

Resources#

Need some help?

Not to worry, our specialist engineers are here to help. Submit a support ticket through the Dashboard.