From 46f8ade78132ee85f877b0a8b2855e2a659e7c20 Mon Sep 17 00:00:00 2001 From: emergent-agent-e1 Date: Sat, 8 Nov 2025 15:17:07 +0000 Subject: [PATCH] auto-commit for 37bbada4-5b26-4306-8933-610248992122 --- .../src/screens/HumanVerificationScreen.tsx | 120 ++++++++++++++---- 1 file changed, 92 insertions(+), 28 deletions(-) diff --git a/frontend/src/screens/HumanVerificationScreen.tsx b/frontend/src/screens/HumanVerificationScreen.tsx index 3b48a6e2..8004661f 100644 --- a/frontend/src/screens/HumanVerificationScreen.tsx +++ b/frontend/src/screens/HumanVerificationScreen.tsx @@ -59,38 +59,102 @@ export default function HumanVerificationScreen({ navigation }: any) { } }; + const turnstileHTML = ` + + + + + + + + +
+
🛡️
+

Human Verification

+

Please complete the security check to continue

+
+
+
+ + + + `; + return ( - - - + {verifying && ( + + + Verifying... - - Human Verification - Please answer this simple question to continue - - - {CAPTCHA_QUESTION.question} + )} + + setLoading(false)} + style={styles.webview} + javaScriptEnabled={true} + domStorageEnabled={true} + /> + + {loading && ( + + - - - - {error ? {error} : null} - - - Verify - - + )} ); }