57 lines
988 B
HTML
57 lines
988 B
HTML
<!DOCTYPE html>
|
|
<html>
|
|
<head>
|
|
<title>Audit Log</title>
|
|
<style>
|
|
body {
|
|
background-color: #333;
|
|
color: #fff;
|
|
font-family: Arial, sans-serif;
|
|
}
|
|
|
|
#menu {
|
|
position: fixed;
|
|
left: 0;
|
|
top: 0;
|
|
bottom: 0;
|
|
width: 200px;
|
|
background-color: #444;
|
|
padding: 20px;
|
|
}
|
|
|
|
#menu ul {
|
|
list-style-type: none;
|
|
padding: 0;
|
|
}
|
|
|
|
#menu li {
|
|
margin-bottom: 10px;
|
|
}
|
|
|
|
#login {
|
|
position: absolute;
|
|
right: 0;
|
|
margin-right: 20px;
|
|
}
|
|
|
|
#discord-login {
|
|
background-color: #7289da;
|
|
color: #fff;
|
|
border: none;
|
|
padding: 10px 20px;
|
|
border-radius: 5px;
|
|
cursor: pointer;
|
|
}
|
|
</style>
|
|
</head>
|
|
<body>
|
|
<div id="menu">
|
|
<ul>
|
|
<li>Audit Log</li>
|
|
</ul>
|
|
</div>
|
|
<div id="login">
|
|
<button id="discord-login">Log in with Discord</button>
|
|
</div>
|
|
</body>
|
|
</html>
|