kontenbase / feedback

Kontenbase Feedback
https://kontenbase.com
4 stars 0 forks source link

UI component for Authentication #8

Open aswara opened 1 year ago

aswara commented 1 year ago

Feature request

Packages or components for Authentication

Is your feature request related to a problem? Please describe.

Kontenbase provide UI component to make it easier for me to develop authentication features on the frontend

Describe the solution you'd like

Make this feature like in https://clerk.dev

Additional context

I think this feature will be very useful for developers

mhaidarhanif commented 1 year ago

Supabase has this as "Auth UI": https://supabase.com/docs/guides/auth/auth-helpers/auth-ui

Auth UI is a pre-built React component for authenticating users. It supports custom themes and extensible styles to match your brand and aesthetic.

As simple as:

npm install @supabase/supabase-js @supabase/auth-ui-react
import { createClient } from '@supabase/supabase-js'
import { Auth } from '@supabase/auth-ui-react'

const supabase = createClient('<PROJECT URL>', '<PROJECT ANON API KEY>')

const App = () => <Auth supabaseClient={supabase} />