-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathindex.html
73 lines (70 loc) · 2.24 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta property="og:title" content="The Pirates' Plunder">
<meta property="og:description" content="APT69420">
<meta property="og:image" content="https://thepiratesplunder.com/qr.png">
<meta property="og:image:width" content="900">
<meta property="og:image:height" content="900">
<meta property="og:url" content="http://www.thepiratesplunder.com">
<meta property="og:type" content="website">
<link rel="shortcut icon" href="favicon.ico">
<link rel="apple-touch-icon" sizes="180x180" href="apple-touch-icon.png">
<link rel="icon" type="image/png" sizes="32x32" href="favicon-32x32.png">
<link rel="icon" type="image/png" sizes="16x16" href="favicon-16x16.png">
<title>The Pirates' Plunder</title>
<style>
body, html {
margin: 0;
padding: 0;
min-height: 100%;
background-color: #000;
}
.background-image {
position: fixed;
top: 0;
left: 0;
right: 0;
bottom: 0;
background: url('tpp.png') center center no-repeat;
background-size: contain;
z-index: -1;
}
.popup {
position: fixed;
top: 50%;
left: 50%;
transform: translate(-50%, -50%);
background-color: #333;
color: white;
padding: 20px;
border-radius: 10px;
box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
text-align: center;
z-index: 2;
}
.popup button {
padding: 10px 20px;
border: none;
border-radius: 5px;
background-color: #008CBA;
color: white;
font-size: 16px;
cursor: pointer;
}
.popup button:hover {
background-color: #005f73;
}
</style>
</head>
<body>
<div class="background-image"></div>
<div class="popup" id="discordPopup" style="display: none;">
<p>The Pirates' Plunder</p>
<button onclick="acceptInvite()">Accept</button>
</div>
<script src="script.js"></script>
</body>
</html>