-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtfs_maintenance_page_v0.html
More file actions
78 lines (73 loc) · 2.14 KB
/
tfs_maintenance_page_v0.html
File metadata and controls
78 lines (73 loc) · 2.14 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Maintenance in Progress - TFS</title>
<style>
body {
font-family: Arial, sans-serif;
margin: 0;
padding: 0;
background-color: #f4f4f4;
color: #333;
display: flex;
justify-content: center;
align-items: center;
min-height: 100vh;
}
.maintenance-container {
background-color: #fff;
padding: 40px;
border-radius: 8px;
box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
text-align: center;
max-width: 600px;
margin: 20px;
}
.maintenance-title {
color: #d9534f;
font-size: 2.2em;
margin-bottom: 20px;
font-weight: bold;
}
.maintenance-message {
font-size: 1.1em;
line-height: 1.6;
margin-bottom: 30px;
color: #555;
}
.url-display {
background-color: #f8f9fa;
border: 1px solid #e9ecef;
padding: 15px;
border-radius: 4px;
font-family: monospace;
font-size: 1.1em;
color: #495057;
margin-top: 20px;
}
.status-icon {
font-size: 3em;
color: #f0ad4e;
margin-bottom: 20px;
}
</style>
</head>
<body>
<div class="maintenance-container">
<div class="status-icon">⚠️</div>
<h1 class="maintenance-title">Maintenance in Progress</h1>
<p class="maintenance-message">
Our TFS instance is temporarily offline for VM migration to Ceph and Proxmox.
We expect to be back online Thursday at 11:00 AM.
</p>
<p class="maintenance-message">
Thank you for your patience during this maintenance window.
</p>
<div class="url-display">
azuredevops.prod.info
</div>
</div>
</body>
</html>