// MyAirSpace — Public certificate verification page. const { Button, Card, Badge, Field, Seal } = window.MyAirSpace || {}; const Icon = window.MyAirSpaceIcon; function VerifyPage() { const [query, setQuery] = React.useState("MAS-4F2K-8WMT"); const [result, setResult] = React.useState("valid"); // 'idle' | 'valid' return (
MyAirSpace myairspace.co.uk/verify
Certificate verification

Check a certificate

Enter a certificate ID to confirm it was issued by MyAirSpace and view its public record.

setQuery(e.target.value)} style={{ flex: 1, minWidth: 180 }} prefix={} /> {result === "valid" && (

Valid certificate

Active

Issued by MyAirSpace · record is genuine

For privacy, the resident’s name and full address are not shown publicly. This record confirms a certificate exists and is a dated statement of privacy preference — it is not legally binding and does not create a no-fly zone.

)}
); } function Detail({ label, value, mono }) { return (
{label}
{value}
); } window.VerifyPage = VerifyPage;