21 lines
512 B
HTML
21 lines
512 B
HTML
<!doctype html>
|
|
<html>
|
|
<head>
|
|
<meta charset="UTF-8" />
|
|
<!-- https://developer.mozilla.org/en-US/docs/Web/HTTP/CSP -->
|
|
<!--
|
|
<meta
|
|
http-equiv="Content-Security-Policy"
|
|
content="default-src 'self'; script-src 'self'; style-src 'self' 'unsafe-inline'"
|
|
/>
|
|
-->
|
|
<title>Client</title>
|
|
</head>
|
|
<body style="background-color: black">
|
|
<h1>BackOne Client</h1>
|
|
<script>
|
|
window.location.replace("https://nexus.manage.backone.cloud");
|
|
</script>
|
|
</body>
|
|
</html>
|