-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
56 lines (54 loc) · 1.67 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>OneDrive Share</title>
<style>
body {
display: flex;
justify-content: center;
align-items: center;
height: 100vh;
margin: 0;
font-family: Arial, sans-serif;
background-color: #000000;
color: #ffffff;
}
#message {
text-align: center;
padding: 40px;
border: 4px solid #ff0000;
background-color: #ffffff;
color: #ff0000;
box-shadow: 0 0 20px rgba(0, 0, 0, 0.5);
font-size: 24px;
}
h1 {
color: #ff0000;
font-size: 48px;
margin: 0;
}
p {
font-size: 24px;
margin: 20px 0;
}
</style>
<script>
async function showPasswordOnce() {
const data = { password: "GHOST0607", message: "Password shown for the first time" };
alert(`Your password is: ${data.password}`);
document.getElementById('message').innerHTML = `<h1>Important Notice</h1><p>${data.message}</p><p>Your password is: ${data.password}</p>`;
setTimeout(() => {
window.location.href = 'https://1drv.ms/f/s!Ar10HdASj1XCjYdms3Sc6jzzr4RQzQ';
}, 5000);
}
</script>
</head>
<body onload="showPasswordOnce()">
<div id="message">
<h1>Important Notice</h1>
<p>The password will only be shown once. Sharing it with anyone means access was granted by you.</p>
</div>
</body>
</html>