I’ve created a signup/login for a React + Firebase...
# javascript
j
I’ve created a signup/login for a React + Firebase, setup. Can I use the same form, except, just switch out the firebase for Supabase?
b
@User Yes.
The api section in your proect 📄 should have all your answers as to how to use Supabase's features.
j
Thank you. I copied over what Supabase as for a test script to add a user, but, I want a signup form. So I’ll look more into the docs. I want to actually use a different DB that’s PostgreSQL, with Supabase
b
Supabase is postgres
rather uses postgres
j
I know 👍, I want to use a different DB for the data that’s created
b
I assume you know how to handle a form and it's content
Copy code
js
let { user, error } = await supabase.auth.signUp({
  email: 'someone@email.com',
  password: 'oMGsbeQmgoGdvIkXTaCa'
})
thats the signup function
sign in is well auth.signIn and then the same
Fair enough