Something went wrong. Try again.
This repository has no description
Something went wrong. Try again.
1.1 kB · 42 lines
HTML
12345678910111213141516171819202122232425262728293031323334353637383940414243<!doctype html><html lang="en"> <head> <meta charset="UTF-8" /> <meta name="viewport" content="width=device-width, initial-scale=1.0" /> <title>Streamplace App Return</title> <style> html, body { height: 100%; width: 100%; margin: 0; padding: 0; background-color: black; display: flex; align-items: center; justify-content: center; } button { background-color: rgb(189, 110, 134); color: white; padding: 10px 20px; border-radius: 5px; border: none; font-size: 1.5rem; font-weight: bold; cursor: pointer; } </style> </head> <body> <button>Complete Login</button> </body> <script> const appBundleId = "APP_BUNDLE_ID_REPLACE_ME"; // This has been causing redirect to fail. Button it is. // document.location.href = `${appBundleId}:/${window.location.search}`; document.querySelector("button").addEventListener("click", () => { document.location.href = `${appBundleId}:/${window.location.search}`; }); </script></html>