Good things come to those who wait.

Good things come to those who wait.

Phone Number

Please ensure you use the same email

import { useEffect, useState } from "react"

export function withEmailAutofill(Component) {
    return (props) => {
        const [email, setEmail] = useState("")

        useEffect(() => {
            const params = new URLSearchParams(window.location.search)
            const emailParam = params.get("email")
            if (emailParam) {
                setEmail(emailParam)
            }
        }, [])

        return (
            <Component
                {...props}
                value={email}
                onChange={(e) => setEmail(e.target.value)}
            />
        )
    }
}

Stay Connected

©Marvellous Club 2026

Stay Connected

©Marvellous Club 2026

©Marvellous Club 2026