-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
28 lines (28 loc) · 891 Bytes
/
index.html
File metadata and controls
28 lines (28 loc) · 891 Bytes
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Redirecting...</title>
<link rel="shortcut icon" href="https://i.imgur.com/w5fjQTO.png" type="image/x-icon">
<style>
body {
background-image: url('https://i.imgur.com/vCeR8kU.png');
background-size: cover;
background-position: center;
height: 100vh;
margin: 0;
display: flex;
justify-content: center;
align-items: center;
}
</style>
<script>
setTimeout(function() {
window.location.href = 'https://discord.com/oauth2/authorize?client_id=952423303425966090&permissions=414464859200&scope=bot%20applications.commands&redirect_uri=https%3A%2F%2Fdub.sh%2Fpollbot&response_type=code';
}, 3000); // 3000 milliseconds = 3 seconds
</script>
</head>
<body>
</body>
</html>