diff --git a/frontend/components/verification-form.tsx b/frontend/components/verification-form.tsx index 126bcb9..48ac6c1 100644 --- a/frontend/components/verification-form.tsx +++ b/frontend/components/verification-form.tsx @@ -18,6 +18,7 @@ export function VerificationFormWithLabel() { uploadedAt?: string; error?: string; } | null>(null); + const [attestationType, setAttestationType] = useState<'intel' | 'amd'>('intel'); const handleSubmit = async (e: React.FormEvent) => { e.preventDefault(); @@ -57,7 +58,7 @@ export function VerificationFormWithLabel() { headers: { "Content-Type": "application/json", }, - body: JSON.stringify({ hex: quoteHex }), + body: JSON.stringify({ hex: quoteHex, type: attestationType }), }); const verifyData = await verifyResponse.json(); @@ -281,6 +282,31 @@ export function VerificationFormWithLabel() { {/* Form */}
+
+ Platform + + +