stamford-syntax-club / course-compose

Course Compose is a course-review website tailored for Stamford students, providing a platform for sharing and discovering insights about various courses
MIT License
2 stars 0 forks source link

Auth Flow #49

Closed chinathaip closed 5 months ago

chinathaip commented 8 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.

Notes

These will be implemented after the page is done

Sign in

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