-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.php
48 lines (48 loc) · 2.13 KB
/
index.php
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
<!DOCTYPE html>
<html>
<head>
<meta name="viewport" content="width=device-width, initial-scale=1">
<script src="https://kit.fontawesome.com/3a6bf539fa.js" crossorigin="anonymous"></script>
<link rel="stylesheet" href="style.css" />
<link rel="stylesheet" href="cookiealert.css" />
<script src="script.js"></script>
<script>
function myFunction() {
var x = document.getElementById("myLinks");
if (x.style.display === "block") {
x.style.display = "none";
} else {
x.style.display = "block";
}
}
</script>
</head>
<body>
<!-- Top Navigation Menu -->
<div class="topnav">
<a href="" style="font-family: 'DiscordHeavy'; font-size: 30px; background-color: #7289da; color: #fff;" class="active">DownNotify Dashboard<span style="font-family: 'DiscordThin'; font-size: 15px;">Customize Account</span></a>
<div id="myLinks">
<a href="index.php"><i class="fa fa-home"></i> Home</a>
<a href="acc_mgt.php"><i class="fa fa-user"></i> User Account</a>
<a href="settings.php"><i class="fa fa-wrench"></i> Settings</a>
<a href="docs.php"><i class="fa fa-book"></i> Documentation</a>
<hr>
<a href="discord.php"><i class="fab fa-discord"></i> Discord Official Server</a>
<a href="https://www.minco.kro.kr/"><i class="fa fa-link"></i> MincoMK Official Website</a>
<a href="https://www.dyzer.tk"><i class="fa fa-link"></i> Dyzer Official Website</a>
<hr>
<a href="logout.php"><i class="fa fa-user"></i> Logout</a>
</div>
<a href="javascript:void(0)" class="icon" onclick="myFunction()">
<i class="fa fa-bars"></i>
</a>
</div>
</div>
<br><br>
<!-- START Bootstrap-Cookie-Alert -->
<div class="alert text-center cookiealert" role="alert" style="font-size: 24px; font-family: arial; padding: 20px;">
<b>Do you like cookies?</b> 🍪 We use cookies to ensure you, get the best experience on our website. <a href="/information#cookie" target="_blank">Learn more</a><button type="button" style="border-radius: 8px; border: solid #7289da; background-color: #7289da; color: #fff;" class="btn btn-primary btn-sm acceptcookies">
I accept
</button>
</div>
</html>