Create signing.html
Browse files- signing.html +45 -0
signing.html
ADDED
|
@@ -0,0 +1,45 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
<!DOCTYPE html>
|
| 2 |
+
<html lang="en">
|
| 3 |
+
<head>
|
| 4 |
+
<meta charset="UTF-8" />
|
| 5 |
+
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
|
| 6 |
+
<title>Everyday Cats Redirect</title>
|
| 7 |
+
<style>
|
| 8 |
+
body {
|
| 9 |
+
background: #fff;
|
| 10 |
+
color: #333;
|
| 11 |
+
font-family: system-ui, sans-serif;
|
| 12 |
+
display: flex;
|
| 13 |
+
align-items: center;
|
| 14 |
+
justify-content: center;
|
| 15 |
+
height: 100vh;
|
| 16 |
+
flex-direction: column;
|
| 17 |
+
text-align: center;
|
| 18 |
+
}
|
| 19 |
+
h1 {
|
| 20 |
+
font-size: 1.5rem;
|
| 21 |
+
margin-bottom: 1rem;
|
| 22 |
+
}
|
| 23 |
+
p {
|
| 24 |
+
opacity: 0.7;
|
| 25 |
+
font-size: 0.9rem;
|
| 26 |
+
}
|
| 27 |
+
</style>
|
| 28 |
+
</head>
|
| 29 |
+
<body>
|
| 30 |
+
<h1>Opening Everyday Cats...</h1>
|
| 31 |
+
<p>If nothing happens, please open it manually.</p>
|
| 32 |
+
|
| 33 |
+
<script>
|
| 34 |
+
const appPackage = "com.everydaycats"; // update with your actual Android package name
|
| 35 |
+
|
| 36 |
+
// Attempt to open the app
|
| 37 |
+
window.location.href = `intent://#Intent;package=${appPackage};end`;
|
| 38 |
+
|
| 39 |
+
// Fallback: open Play Store after 2s
|
| 40 |
+
setTimeout(() => {
|
| 41 |
+
window.location.href = `https://play.google.com/store/apps/details?id=${appPackage}`;
|
| 42 |
+
}, 2000);
|
| 43 |
+
</script>
|
| 44 |
+
</body>
|
| 45 |
+
</html>
|