CensoredManager/index.html
mctaylors 5f64caf6bc
Initial commit
Signed-off-by: mctaylors <cantsendmails@mctaylors.ru>
2024-06-06 22:39:59 +05:00

31 lines
No EOL
918 B
HTML

<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8"/>
<title>CensoredManager</title>
<link rel="stylesheet" href="/assets/css/styles.css"/>
</head>
<body>
<div class="right">
Logged in as <span class="highlighted" id="user"></span>
<button onclick="logout()">Logout</button>
</div>
<div>
<span class="highlighted display" id="amount">-</span> coins
</div>
<hr/>
<div>
<a href="activate"><button>Activate</button></a>
<a href="create"><button>Create</button></a>
<a href="delete"><button>Delete</button></a>
<a id="list"><button>List<sup>JSON</sup></button></a>
<span class="right footer">
CensoredManager<br/>
<sup><b>home</b> - <a href="https://git.mctaylors.ru/mctaylors/CensoredManager">source code</a></sup>
</span>
</div>
<script src="/assets/js/shared.js"></script>
<script src="/assets/js/cookie.js"></script>
<script src="/assets/js/index.js"></script>
</body>
</html>