-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
96 lines (90 loc) · 2.74 KB
/
Copy pathindex.html
File metadata and controls
96 lines (90 loc) · 2.74 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<meta name="description" content="EpochPass: Verify your Ethereum journey. Your time in crypto, forever on-chain." />
<meta name="keywords" content="EpochPass, Ethereum NFT, crypto age, wallet verification, web3 identity" />
<meta name="author" content="EpochPass Team" />
<title>EpochPass – Your Ethereum Journey</title>
<link rel="icon" type="image/png" href="logo_EpochPass.png" />
<style>
body {
margin: 0;
background-color: #0e0b25;
color: #a78bfa;
font-family: 'Inter', sans-serif;
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
height: 100vh;
text-align: center;
}
img {
width: 100px;
height: auto;
margin-bottom: 20px;
}
h1 {
font-size: 1.75rem;
margin-bottom: 40px;
}
#countdown {
font-size: 4rem;
letter-spacing: 1px;
display: flex;
gap: 20px;
justify-content: center;
}
.time {
display: flex;
flex-direction: column;
align-items: center;
}
.label {
font-size: 0.75rem;
margin-top: 5px;
}
</style>
</head>
<body>
<img src="logo_EpochPass_transparent.png" alt="EpochPass Logo" />
<h1>EpochPass is coming</h1>
<div id="countdown">
<div class="time">
<span id="days">0</span>
<span class="label">Days</span>
</div>
<div class="time">
<span id="hours">0</span>
<span class="label">Hours</span>
</div>
<div class="time">
<span id="minutes">0</span>
<span class="label">Minutes</span>
</div>
<div class="time">
<span id="seconds">0</span>
<span class="label">Seconds</span>
</div>
</div>
<script>
const targetDate = new Date('2025-07-30T00:00:00Z');
function updateCountdown() {
const now = new Date();
const diff = targetDate - now;
const days = Math.floor(diff / (1000 * 60 * 60 * 24));
const hours = Math.floor((diff / (1000 * 60 * 60)) % 24);
const minutes = Math.floor((diff / (1000 * 60)) % 60);
const seconds = Math.floor((diff / 1000) % 60);
document.getElementById('days').textContent = days;
document.getElementById('hours').textContent = hours;
document.getElementById('minutes').textContent = minutes;
document.getElementById('seconds').textContent = seconds;
}
updateCountdown();
setInterval(updateCountdown, 1000);
</script>
</body>
</html>