Use your company credentials to access the internal portal.
Welcome back, there
Select a section below to get started.
Your Sections
No sections assigned yet
Contact your administrator to request access to portal sections.
Administration
User Access Management
⚡ One-Time Setup Required
The portal_users table doesn't exist yet. Run this SQL in your Supabase SQL Editor, then refresh this page:
CREATE TABLE IF NOT EXISTS portal_users (
email TEXT PRIMARY KEY,
display_name TEXT NOT NULL DEFAULT '',
sections TEXT[] NOT NULL DEFAULT '{}',
is_admin BOOLEAN NOT NULL DEFAULT FALSE,
created_at TIMESTAMPTZ NOT NULL DEFAULT NOW()
);
ALTER TABLE portal_users ENABLE ROW LEVEL SECURITY;
CREATE POLICY "Authenticated full access"
ON portal_users FOR ALL TO authenticated
USING (TRUE) WITH CHECK (TRUE);