-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
39 lines (39 loc) · 843 Bytes
/
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
<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8">
<style>
body {
height: 100vh;
overflow: hidden;
background-image: url('./img/background.png');
background-repeat: no-repeat;
background-size: cover;
}
</style>
<meta property="og:image" content='./img/og.png'>
</head>
<body>
<script language="javascript">
function password()
{
while(true){
var pass = prompt('Enter Password','');
if (pass == "muselive")
{
alert('Welcome to museLIVE World!');
break;
}
else { alert('You can do better :)');
}
}
}
function move()
{location.href='dev.html'}
setTimeout(() => {
document.write(password());
document.write(move());
}, 1000);
</script>
</body>
</html>