diff --git a/index.html b/index.html index 8b137891791fe96927ad78e64b0aad7bded08bdc..86d2568e6d77378dfbe4fefa629cecb2b3038452 100644 --- a/index.html +++ b/index.html @@ -1 +1,23 @@ +<!DOCTYPE html> +<html lang="en"> +<head> + <meta charset="UTF-8"> + <meta name="viewport" content="width=device-width, initial-scale=1.0"> + <title>Internal Test Builds</title> +</head> + +<body> + <h1>Internal Test Builds</h1> + + <button onclick="downloadiOSProdBuild()">Download iOS prod build</button> + + <script> + function downloadiOSProdBuild() { + // Add the logic to handle the download here + alert("Downloading iOS prod build..."); // For demonstration purposes + } + </script> +</body> + +</html>