dfdsfsafdsfsdfasdsf

This commit is contained in:
drel
2025-07-26 15:23:11 +03:00
parent 2b41b6eba8
commit c55a0a5b18
14 changed files with 846 additions and 0 deletions

18
templates/token.html Normal file
View File

@@ -0,0 +1,18 @@
<!DOCTYPE html>
<html>
<head>
<title>Token</title>
<style>
body { font-family: Arial; padding: 20px; }
.token-box { background: #f5f5f5; padding: 15px; margin: 10px 0; }
</style>
</head>
<body>
<h3>Auth Success!</h3>
<div class="token-box">
<strong>Device UUID:</strong> {{ uuid }}<br>
<strong>Access Token:</strong> {{ token }}
</div>
<p>This UUID has been saved in cookies</p>
</body>
</html>