-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathstatus_page.html
More file actions
97 lines (84 loc) · 3.17 KB
/
Copy pathstatus_page.html
File metadata and controls
97 lines (84 loc) · 3.17 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Status Alert</title>
<link rel="icon" href="data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 100 100'><text y='.9em' font-size='90'>⚠️</text></svg>" type="image/svg+xml">
<style>
* { margin: 0; padding: 0; box-sizing: border-box; border-radius: 5px;}
body {
font-family: system-ui, sans-serif;
background: #f5f5f5;
color: #333;
min-height: 100vh;
display: flex;
align-items: center;
justify-content: center;
padding: 1rem;
}
.container {
max-width: 600px;
background: white;
border: 1px solid #ddd;
padding: 2rem;
text-align: center;
}
.icon { font-size: 3rem; margin-bottom: 1rem; }
h1 { margin-bottom: 1rem; }
.message { margin-bottom: 2rem; color: #666; }
.details {
background: #f9f9f9;
padding: 1rem;
margin-bottom: 1rem;
text-align: left;
border: 1px solid #eee;
}
.detail-item { margin-bottom: 0.5rem; }
.detail-label { font-weight: bold; margin-right: 0.5rem; }
.link-button {
display: inline-block;
padding: 0.75rem 1rem;
background: #007bff;
color: white;
text-decoration: none;
margin: 0.25rem;
}
.footer { margin-top: 2rem; padding-top: 1rem; border-top: 1px solid #eee; color: #666; font-size: 0.9rem; }
/* Status colors */
.deprecated #statusMessage { background: #ffe5e5; color: #d63384; padding: 0.5rem; }
.maintenance #statusMessage { background: #fff3cd; color: #856404; padding: 0.5rem; }
@media (max-width: 640px) {
.container { padding: 1rem; }
h1 { font-size: 1.5rem; }
.icon { font-size: 2.5rem; }
}
</style>
</head>
<body>
<div class="container maintenance">
<div class="icon">🔧</div>
<h1>oncogene.iobio</h1>
<p class="message" id="statusMessage">
This app is currently under maintenance to improve your experience.
</p>
<div class="details">
<div class="detail-item">
<span class="detail-label">Check back in on this app in a few weeks, or contact us with questions.</span>
</div>
<br>
<div class="detail-item">
<span class="detail-label">Started:</span>
<span class="detail-value">October 6, 2025</span>
</div>
<div class="detail-item">
<span class="detail-label">Contact:</span>
<span class="detail-value">iobioproject@gmail.com</span>
</div>
</div>
<footer class="footer">
<p>Thank you for your patience and understanding.</p>
</footer>
</div>
</body>
</html>