CensoredManager/auth/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
821 B
HTML

<!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>