30 lines
1.1 KiB
HTML
30 lines
1.1 KiB
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'">
|
|
<title>Hello World!</title>
|
|
<link rel="stylesheet" href="style.css">
|
|
</head>
|
|
<body>
|
|
<div class="titlebar">NCOS Companion</div>
|
|
<div class="content">
|
|
<h1 class="centered">Latest Version: V<span id="latest">0.0.0</span></h1>
|
|
<div class="row">
|
|
<div class="col-5">
|
|
<h4 class="centered">Installed: V<span id="installed">0.0.0</span></h4>
|
|
<button class="download" id="download">Update to V<span id="latest">0.0.0</span></button>
|
|
</div>
|
|
<div class="col-7" id="download-section">
|
|
<h4 class="centered" id="progress-step">Downloading...</h4>
|
|
<div id="progress-bar"><span id="progress-label">100%</span></div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
<!-- You can also require other files to run in this process -->
|
|
<script src="./render.js"></script>
|
|
</body>
|
|
</html> |