Closed chinathaip closed 5 months ago
The IT team provided us Microsoft OAuth key only for the production server. We will need to use different method for our development (beta) server.
Create a simple login page that allows users to signup and sign in with email + password.
These will be implemented after the page is done
const { data, error } = await supabase.auth.signUp({ email: 'example@email.com', password: 'example-password', })
Sign in
const { data, error } = await supabase.auth.signInWithPassword({ email: 'example@email.com', password: 'example-password', })
The IT team provided us Microsoft OAuth key only for the production server. We will need to use different method for our development (beta) server.
Create a simple login page that allows users to signup and sign in with email + password.
Notes
These will be implemented after the page is done
Sign in