27 lines
743 B
HTML
27 lines
743 B
HTML
<!doctype html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<meta name="viewport"
|
|
content="width=device-width, user-scalable=no, initial-scale=1.0, maximum-scale=1.0, minimum-scale=1.0">
|
|
<meta http-equiv="X-UA-Compatible" content="ie=edge">
|
|
<base href="/" target="_top">
|
|
<title>Administration</title>
|
|
<style>
|
|
a {
|
|
margin: 2px;
|
|
padding: 10px;
|
|
border: 1px solid black;
|
|
width: min-content;
|
|
}
|
|
</style>
|
|
</head>
|
|
<body>
|
|
<h1>Admin Panel</h1>
|
|
<div style="display:flex; flex-flow: column;">
|
|
<a href="admin/votes">Votes</a>
|
|
<a href="admin/players">Players</a>
|
|
<a href="admin/users">Users</a>
|
|
</div>
|
|
</body>
|
|
</html> |