Build a User Management App with React
Explore drop-in UI components for your Supabase app.
UI components built on shadcn/ui that connect to Supabase via a single command.
Explore ComponentsThis tutorial demonstrates how to build a basic user management app. The app authenticates and identifies the user, stores their profile information in the database, and allows the user to log in, update their profile details, and upload a profile photo. The app uses:
- Supabase Database - a Postgres database for storing your user data and Row Level Security so data is protected and users can only access their own information.
- Supabase Auth - allow users to sign up and log in.
- Supabase Storage - allow users to upload a profile photo.

If you get stuck while working through this guide, you can find the full example on GitHub.
Project setup#
Before you start building you need to set up the Database and API. You can do this by starting a new Project in Supabase and then creating a "schema" inside the database.
Create a project#
- Create a new project in the Supabase Dashboard.
- Enter your project details.
- Wait for the new database to launch.
Set up the database schema#
Now set up the database schema. You can use the "User Management Starter" quickstart in the SQL Editor, or you can copy/paste the SQL from below and run it.
- Go to the SQL Editor page in the Dashboard.
- Click User Management Starter under the Community > Quickstarts tab.
- Click Run.
You can pull the database schema down to your local project by running the db pull command. Read the local development docs for detailed instructions.
1supabase link --project-ref <project-id>2# You can get <project-id> from your project's dashboard URL: https://supabase.com/dashboard/project/<project-id>3supabase db pullGet API details#
Now that you've created some database tables, you are ready to insert data using the auto-generated API.
To do this, you need to get the Project URL and key from the project Connect dialog.
Read the API keys docs for a full explanation of all key types and their uses.
Changes to API keys
Supabase is changing the way keys work to improve project security and developer experience. You can read the full announcement on GitHub.
The older anon and service_role keys will work until the end of 2026 but we strongly encourage switching to and using the new publishable (sb_publishable_xxx) and secret (sb_secret_xxx) keys now.
In most cases, you can get keys from the Project's Connect dialog, but if you want a specific key, you can find them in the Settings > API Keys section of the Dashboard.
- For legacy keys, copy the
anonkey for client-side operations and theservice_rolekey for server-side operations from the Legacy API Keys tab. - For new keys, open the API Keys tab, if you don't have a publishable key already, click Create new API Keys, and copy the value from the Publishable key section.
Building the app#
Start building the React app from scratch.
Initialize a React app#
Use Vite to initialize an app called supabase-react:
1npm create vite@latest supabase-react -- --template react2cd supabase-reactInstall supabase-js:
1npm install @supabase/supabase-jsSave the environment variables in a .env.local file, using the Project URL and the key that you copied earlier.
.env
1VITE_SUPABASE_URL=2VITE_SUPABASE_PUBLISHABLE_KEY=With the API credentials in place, create a helper file to initialize the Supabase client. The application exposes these variables in the browser, and that's fine as Supabase enables Row Level Security by default on all tables.
Create and edit src/supabaseClient.js:
src/supabaseClient.js
1/**2 * lib/supabaseClient.js3 * Helper to initialize the Supabase client.4 */56import { createClient } from '@supabase/supabase-js'78const supabaseUrl = import.meta.env.VITE_SUPABASE_URL9const supabasePublishableKey = import.meta.env.VITE_SUPABASE_PUBLISHABLE_KEY1011export const supabase = createClient(supabaseUrl, supabasePublishableKey)App styling (optional)#
An optional step is to update the CSS file src/index.css to make the app look better.
You can find the full contents of this file in the example repository.
Set up a login component#
You need a React component to manage logins and sign-ups. It uses Magic Links, so users can sign in with their email without using passwords.
Did you know?
You can customize other emails sent out to new users, including the email's looks, content, and query parameters from the Authentication > Email section of the Dashboard.
Create and edit src/Auth.jsx:
src/Auth.jsx
1import { useState } from 'react'2import { supabase } from './supabaseClient'34export default function Auth() {5 const [loading, setLoading] = useState(false)6 const [email, setEmail] = useState('')78 const handleLogin = async (event) => {9 event.preventDefault()1011 setLoading(true)12 const { error } = await supabase.auth.signInWithOtp({ email })1314 if (error) {15 alert(error.error_description || error.message)16 } else {17 alert('Check your email for the login link!')18 }19 setLoading(false)20 }2122 return (23 <div className="row flex flex-center">24 <div className="col-6 form-widget">25 <h1 className="header">Supabase + React</h1>26 <p className="description">Sign in via magic link with your email below</p>27 <form className="form-widget" onSubmit={handleLogin}>28 <div>29 <input30 className="inputField"31 type="email"32 placeholder="Your email"33 value={email}34 required={true}35 onChange={(e) => setEmail(e.target.value)}36 />37 </div>38 <div>39 <button className={'button block'} disabled={loading}>40 {loading ? <span>Loading</span> : <span>Send magic link</span>}41 </button>42 </div>43 </form>44 </div>45 </div>46 )47}Account page#
After a user signs in, they need a way to edit their profile details and manage their accounts.
Create a new component called src/Account.jsx and add the following code:
src/Account.jsx
1import { useState, useEffect } from 'react'2import { supabase } from './supabaseClient'34// ...567export default function Account({ user }) {8 const [loading, setLoading] = useState(true)9 const [username, setUsername] = useState(null)10 const [website, setWebsite] = useState(null)11 const [avatar_url, setAvatarUrl] = useState(null)1213 useEffect(() => {14 let ignore = false15 async function getProfile() {16 setLoading(true)1718 const { data, error } = await supabase19 .from('profiles')20 .select(`username, website, avatar_url`)21 .eq('id', user.id)22 .single()2324 if (!ignore) {25 if (error) {26 console.warn(error)27 } else if (data) {28 setUsername(data.username)29 setWebsite(data.website)30 setAvatarUrl(data.avatar_url)31 }32 }3334 setLoading(false)35 }3637 getProfile()3839 return () => {40 ignore = true41 }42 }, [user])4344 async function updateProfile(event, avatarUrl) {45 event.preventDefault()4647 setLoading(true)4849 const updates = {50 id: user.id,51 username,52 website,53 avatar_url: avatarUrl,54 updated_at: new Date(),55 }5657 const { error } = await supabase.from('profiles').upsert(updates)5859 if (error) {60 alert(error.message)61 } else {62 setAvatarUrl(avatarUrl)63 }64 setLoading(false)65 }6667 return (68 <form onSubmit={updateProfile} className="form-widget">6970 {/* ... */}7172 <div>73 <label htmlFor="email">Email</label>74 <input id="email" type="text" value={user.email} disabled />75 </div>76 <div>77 <label htmlFor="username">Name</label>78 <input79 id="username"80 type="text"81 required82 value={username || ''}83 onChange={(e) => setUsername(e.target.value)}84 />85 </div>86 <div>87 <label htmlFor="website">Website</label>88 <input89 id="website"90 type="url"91 value={website || ''}92 onChange={(e) => setWebsite(e.target.value)}93 />94 </div>9596 <div>97 <button className="button block primary" type="submit" disabled={loading}>98 {loading ? 'Loading ...' : 'Update'}99 </button>100 </div>101102 <div>103 <button className="button block" type="button" onClick={() => supabase.auth.signOut()}>104 Sign Out105 </button>106 </div>107 </form>108 )109}Profile photos#
Add a way for users to upload a profile photo. Supabase configures every project with Storage for managing large files like photos and videos.
Create an upload widget#
Create src/Avatar.jsx and add the following code:
src/Avatar.jsx
1import { useEffect, useState } from 'react'2import { supabase } from './supabaseClient'34export default function Avatar({ url, size, onUpload }) {5 const [avatarUrl, setAvatarUrl] = useState(null)6 const [uploading, setUploading] = useState(false)78 useEffect(() => {9 if (url) downloadImage(url)10 }, [url])1112 async function downloadImage(path) {13 try {14 const { data, error } = await supabase.storage.from('avatars').download(path)15 if (error) {16 throw error17 }18 const url = URL.createObjectURL(data)19 setAvatarUrl(url)20 } catch (error) {21 console.log('Error downloading image: ', error.message)22 }23 }2425 async function uploadAvatar(event) {26 try {27 setUploading(true)2829 if (!event.target.files || event.target.files.length === 0) {30 throw new Error('You must select an image to upload.')31 }3233 const file = event.target.files[0]34 const fileExt = file.name.split('.').pop()35 const fileName = `${Math.random()}.${fileExt}`36 const filePath = `${fileName}`3738 let { error: uploadError } = await supabase.storage.from('avatars').upload(filePath, file)3940 if (uploadError) {41 throw uploadError42 }4344 onUpload(event, filePath)45 } catch (error) {46 alert(error.message)47 } finally {48 setUploading(false)49 }50 }5152 return (53 <div>54 {avatarUrl ? (55 <img56 src={avatarUrl}57 alt="Avatar"58 className="avatar image"59 style={{ height: size, width: size }}60 />61 ) : (62 <div className="avatar no-image" style={{ height: size, width: size }} />63 )}64 <div style={{ width: size }}>65 <label className="button primary block" htmlFor="single">66 {uploading ? 'Uploading ...' : 'Upload'}67 </label>68 <input69 style={{70 visibility: 'hidden',71 position: 'absolute',72 }}73 type="file"74 id="single"75 accept="image/*"76 onChange={uploadAvatar}77 disabled={uploading}78 />79 </div>80 </div>81 )82}Update the Account component#
With the Avatar component created, update src/Account.jsx to include it:
src/Account.jsx
1import { useState, useEffect } from 'react'2import { supabase } from './supabaseClient'3import Avatar from './Avatar'45export default function Account({ user }) {6 const [loading, setLoading] = useState(true)7 const [username, setUsername] = useState(null)8 const [website, setWebsite] = useState(null)9 const [avatar_url, setAvatarUrl] = useState(null)1011 useEffect(() => {12 let ignore = false13 async function getProfile() {14 setLoading(true)1516 const { data, error } = await supabase17 .from('profiles')18 .select(`username, website, avatar_url`)19 .eq('id', user.id)20 .single()2122 if (!ignore) {23 if (error) {24 console.warn(error)25 } else if (data) {26 setUsername(data.username)27 setWebsite(data.website)28 setAvatarUrl(data.avatar_url)29 }30 }3132 setLoading(false)33 }3435 getProfile()3637 return () => {38 ignore = true39 }40 }, [user])4142 async function updateProfile(event, avatarUrl) {43 event.preventDefault()4445 setLoading(true)4647 const updates = {48 id: user.id,49 username,50 website,51 avatar_url: avatarUrl,52 updated_at: new Date(),53 }5455 const { error } = await supabase.from('profiles').upsert(updates)5657 if (error) {58 alert(error.message)59 } else {60 setAvatarUrl(avatarUrl)61 }62 setLoading(false)63 }6465 return (66 <form onSubmit={updateProfile} className="form-widget">67 <Avatar68 url={avatar_url}69 size={150}70 onUpload={(event, url) => {71 updateProfile(event, url)72 }}73 />74 <div>75 <label htmlFor="email">Email</label>76 <input id="email" type="text" value={user.email} disabled />77 </div>78 <div>79 <label htmlFor="username">Name</label>80 <input81 id="username"82 type="text"83 required84 value={username || ''}85 onChange={(e) => setUsername(e.target.value)}86 />87 </div>88 <div>89 <label htmlFor="website">Website</label>90 <input91 id="website"92 type="url"93 value={website || ''}94 onChange={(e) => setWebsite(e.target.value)}95 />96 </div>9798 <div>99 <button className="button block primary" type="submit" disabled={loading}>100 {loading ? 'Loading ...' : 'Update'}101 </button>102 </div>103104 <div>105 <button className="button block" type="button" onClick={() => supabase.auth.signOut()}>106 Sign Out107 </button>108 </div>109 </form>110 )111}Launch!#
With all the components in place, change the contents of src/App.jsx to include the new components and Auth logic.
The Supabase Auth SDK contains three different functions for authenticating user access to applications:
Summary of the methods#
- Use
getClaimsto protect pages and user data. It reads the access token from storage and verifies it. Locally via the WebCrypto API and a cached JWKS endpoint when the project uses asymmetric signing keys (the default for new projects), or by callinggetUsersolely to validate when symmetric keys are in use. The returned claims always come from decoding the JWT, not from a user lookup. getUsermakes a network call to the project's Auth instance to get the user record, which includes the most up-to-date information about the user at the cost of a network call.getSessionwhen you need the raw session (the access token, refresh token, and expiry). For example to forward the access token to another service. The session is loaded directly from local storage and isn't re-validated against the Auth server, so the embedded user object shouldn't be trusted on its own when storage is shared with the client (cookies, request headers). To verify identity, validate the access token withgetClaims, or callgetUserfor a fresh, server-confirmed user record.
In summary: use getClaims to verify identity (typically for protecting pages and data), getUser when you need an up-to-date user record from the Auth server, and getSession when you need the access or refresh token directly, but don't rely on the user object it returns for authorization decisions.
src/App.jsx
1function App() {2 const [claims, setClaims] = useState(null)34 useEffect(() => {5 const loadClaims = async () => {6 const {7 data: { claims },8 } = await supabase.auth.getClaims()9 setClaims(claims)10 }1112 loadClaims()1314 const {15 data: { subscription },16 } = supabase.auth.onAuthStateChange(() => {17 loadClaims()18 })1920 return () => subscription.unsubscribe()21 }, [])2223 return (24 <div className="container" style={{ padding: '50px 0 100px 0' }}>25 {!claims ? <Auth /> : <Account key={claims.sub} claims={claims} />}26 </div>27 )28}Once that's done, run this in a terminal window:
1npm run devAnd then open the browser to localhost:5173 and you should see the completed app.

At this stage you have a fully functional application!