18 lines
454 B
HTML
18 lines
454 B
HTML
<!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> |