Initial commit

Signed-off-by: mctaylors <cantsendmails@mctaylors.ru>
This commit is contained in:
Macintxsh 2024-06-06 22:39:59 +05:00
commit 5f64caf6bc
Signed by: mctaylors
GPG key ID: 4EEF4F949A266EE2
13 changed files with 400 additions and 0 deletions

31
auth/index.html Normal file
View file

@ -0,0 +1,31 @@
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8"/>
<title>CensoredManager - Auth</title>
<link rel="stylesheet" href="/assets/css/styles.css"/>
</head>
<body>
<div id="form">
<form id="token-form">
<label>
Authorize by using <a id="api-provider"></a> token.
<br/>
<input type="password" id="token" placeholder="Token" required/>
</label>
<button type="submit">Authorize</button>
<span id="notification"></span>
</form>
</div>
<hr/>
<div>
<span class="right footer">
CensoredManager<br/>
<sup><s>home</s> - <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/auth.js"></script>
</body>
</html>