/*********************************************************************************************************************************************************************** * File Name: Register.jsx * Type of Program: Frontend Page * Description: Registration page. Accepts optional ?group_code= query param to * auto-enroll new users into a user group on verification. * Route: /register or /register?group_code=XXXX * Module: User Credentials * Author: lash0000 * Date Created: May 23, 2026 *********************************************************************************************************************************************************************** * Change History: * DATE AUTHOR LOG NUMBER DESCRIPTION * May 23, 2026 lash0000 001 Initial creation - STAR Phase 1 Project ***********************************************************************************************************************************************************************/ import { Link } from 'react-router-dom' import { RegisterForm } from '../components/RegisterForm' import { AuthThemeToggle } from '../components/AuthThemeToggle' import { MetadataProvider } from '@/contexts/MetadataContext' // TODO: flip to true once the hero banner asset is ready; grid auto-centers the // left panel while this is false so no other classes need to change either way. const SHOW_BANNER = false export default function Register() { return (
{/* ── Left panel ── */}
Philproperties
Philproperties
{/* ── Right panel — hero image ── */} {SHOW_BANNER && (
Philproperties
)}
) }