Pepguy commited on
Commit
2746f0a
·
verified ·
1 Parent(s): af827a3

Update signing.html

Browse files
Files changed (1) hide show
  1. signing.html +30 -18
signing.html CHANGED
@@ -3,43 +3,55 @@
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.public_string.dubem"; // "com.publicstring.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>
 
3
  <head>
4
  <meta charset="UTF-8" />
5
  <meta name="viewport" content="width=device-width, initial-scale=1.0" />
6
+ <title>Everyday Cats – Sign-in Confirmed</title>
7
  <style>
8
  body {
9
+ background: #fffafc;
10
+ color: #222;
11
+ font-family: "Inter", 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
+ margin: 0;
19
  }
20
  h1 {
21
+ font-size: 1.8rem;
22
+ margin-bottom: 0.5rem;
23
  }
24
  p {
25
+ font-size: 1rem;
26
+ opacity: 0.8;
27
+ margin-bottom: 1.5rem;
28
+ }
29
+ button {
30
+ background: #ff8ac4;
31
+ border: none;
32
+ padding: 0.75rem 1.5rem;
33
+ border-radius: 9999px;
34
+ font-size: 1rem;
35
+ font-weight: 600;
36
+ color: white;
37
+ cursor: pointer;
38
+ transition: 0.2s;
39
+ }
40
+ button:hover {
41
+ background: #ff6faf;
42
  }
43
  </style>
44
  </head>
45
  <body>
46
+ <h1>Sign-in Confirmed ✅</h1>
47
+ <p>Your Everyday Cats account is ready. You can now return to the app.</p>
48
+ <button onclick="openApp()">Return to App</button>
49
 
50
  <script>
51
  const appPackage = "com.public_string.dubem"; // "com.publicstring.everydaycats"; // update with your actual Android package name
52
+ function openApp() {
53
+ window.location.href = `intent://#Intent;package=${appPackage};end`;
54
+ }
 
 
 
 
 
55
  </script>
56
  </body>
57
  </html>