Initial commit
Signed-off-by: mctaylors <cantsendmails@mctaylors.ru>
This commit is contained in:
commit
5f64caf6bc
13 changed files with 400 additions and 0 deletions
31
index.html
Normal file
31
index.html
Normal file
|
@ -0,0 +1,31 @@
|
|||
<!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>
|
Reference in a new issue