Files
edgetunnel/apps/cf-page-vless/public/401.html
2023-05-20 02:22:00 +08:00

34 lines
1018 B
HTML

<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>401 - UUID Not Valid</title>
</head>
<body>
<h1 style="color: red">Not set valid UUID in Environment Variables.</h1>
<h2>
Please use tool to generate and
<span style="color: red">remember</span> UUID or use this one
<span style="color: blue" id="uuidSpan"></span>
</h2>
<h3>
You must use same UUID for login this page after config valid UUID
Environment Variables
</h3>
<h2>
Please refer to
<a
href="https://edgetunnel.114567.xyz/guide/cf-pages.html#%E5%A1%AB%E5%86%99-pages-build-%E4%BF%A1%E6%81%AF"
>deno deploy guide</a
>
</h2>
<script>
let uuid = URL.createObjectURL(new Blob([])).substr(-36);
document.getElementById('uuidSpan').textContent = uuid;
</script>
</body>
</html>