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 - - + )} ); }