Early prototype

This commit is contained in:
2021-05-08 21:05:46 +02:00
parent 577622170a
commit fedd45b83c
5 changed files with 223 additions and 21 deletions

View File

@ -1,30 +1,31 @@
<!DOCTYPE html>
<html>
<html lang="en">
<head>
<title>Locutus</title>
<meta charset="UTF-8"/>
<meta name="viewport" content="width=device-width, initial-scale=1.0"/>
<link rel="stylesheet" href="/res/styles/styles.css" type="text/css"/>
<script src="/res/js/locutus.js" type="text/javascript"></script>
<style type="text/css">
html {
height: 100%;
text-family: 'Arial', sans-serif;
}
body {
height: 100%;
margin: 0;
}
noscript {
text-align: center;
}
</style>
<meta http-equiv="Content-Security-Policy" content="
default-src 'none';
style-src 'self';
script-src 'self';
img-src * blob: data:;
connect-src *;
media-src * blob: data:;">
</head>
<body>
<noscript>
Your browser either does not support JavaScript or has disabled script execution.<br/>
Locutus needs JavaScript to be enabled.
</noscript>
<main id="locutus">
<main>
</main>
<div id="windows">
<noscript>
Your browser either does not support JavaScript or has disabled script execution.<br/>
Locutus needs JavaScript to be enabled to function correctly.
</noscript>
</div>
<footer>
<div>Locutus USIMP web client</div>
<div>Copyright &copy; 2021 Thomas Hilscher, Lorenz Stechauner</div>
</footer>
</body>
</html>