-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
89 lines (78 loc) · 2.12 KB
/
index.html
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Under Construction</title>
<link rel="stylesheet" href="https://stackpath.bootstrapcdn.com/bootstrap/4.5.2/css/bootstrap.min.css">
<script>if (window.location.protocol == 'http:') {
console.log("HTTP is DISABLED");
window.location.href =
window.location.href.replace(
'http:', 'https:');
}</script>
<style>
body {
background-color: #f8f9fa;
font-family: Arial, sans-serif;
}
.container {
display: flex;
justify-content: center;
align-items: center;
height: 100vh;
}
.content {
text-align: center;
}
h1 {
font-size: 36px;
font-weight: bold;
color: #333;
margin-bottom: 20px;
}
p {
font-size: 18px;
color: #666;
margin-bottom: 30px;
}
.progress {
height: 20px;
border-radius: 10px;
}
.progress-bar {
background-color: #007bff;
border-radius: 10px;
}
.discord-button {
background-color: #7289DA;
color: #FFFFFF;
padding: 10px 20px;
font-size: 18px;
border: none;
border-radius: 5px;
cursor: pointer;
}
</style>
</head>
<body>
<div class="container">
<div class="content">
<h1>Under Construction</h1>
<p>Sodium Is Under Construction! It'll Come soon!</p>
<p>This is our Total Progress with Sodium!</p>
<div class="progress">
<div id="progress-bar" class="progress-bar progress-bar-striped progress-bar-animated" role="progressbar" aria-valuemin="0" aria-valuemax="100"></div>
</div>
</div>
</div>
<script src="https://stackpath.bootstrapcdn.com/bootstrap/4.5.2/js/bootstrap.min.js"></script>
<script>
var progress = 10; // Set the progress percentage here (e.g., 10%)
var progressBar = document.getElementById('progress-bar');
progressBar.style.width = progress + '%';
progressBar.setAttribute('aria-valuenow', progress);
progressBar.innerHTML = progress + '%';
</script>
</body>
</html>