-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathfallback.html
More file actions
72 lines (69 loc) · 1.88 KB
/
fallback.html
File metadata and controls
72 lines (69 loc) · 1.88 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Application Loading</title>
<style>
body {
font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, "Open Sans", "Helvetica Neue", sans-serif;
background-color: #f5f5f5;
color: #333;
display: flex;
justify-content: center;
align-items: center;
height: 100vh;
margin: 0;
text-align: center;
padding: 20px;
}
.container {
max-width: 600px;
padding: 30px;
background-color: white;
border-radius: 8px;
box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}
h1 {
color: #4F46E5;
margin-bottom: 20px;
}
p {
line-height: 1.6;
margin-bottom: 20px;
}
.status {
background-color: #f9fafb;
border-radius: 4px;
padding: 15px;
border-left: 4px solid #4F46E5;
margin-bottom: 20px;
text-align: left;
}
.reload-button {
background-color: #4F46E5;
color: white;
border: none;
padding: 10px 20px;
border-radius: 4px;
font-size: 16px;
cursor: pointer;
transition: background-color 0.2s;
}
.reload-button:hover {
background-color: #4338CA;
}
</style>
</head>
<body>
<div class="container">
<h1>Application is Starting</h1>
<p>The server is running but the application interface is still loading. This is a temporary page.</p>
<div class="status">
<p><strong>Status:</strong> Database connected, API server running, waiting for frontend application to load.</p>
</div>
<p>If you continue to see this page, try refreshing your browser in a few moments.</p>
<button class="reload-button" onclick="window.location.reload()">Refresh Page</button>
</div>
</body>
</html>