[web] Move web client to this repo

This commit is contained in:
Joscha 2020-03-14 01:05:33 +00:00
parent 4b8d0ee4a4
commit f8fd5b3c3e
7 changed files with 773 additions and 0 deletions

39
forest-web/init.html Normal file
View file

@ -0,0 +1,39 @@
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<title>Forest</title>
<link rel="stylesheet" href="main.css">
<link rel="stylesheet" href="node.css">
<link rel="stylesheet" href="settings.css">
<script defer src="node.js"></script>
<script defer src="settings.js"></script>
</head>
<body>
<div id="root-node-container">
<div class="node">
<div class="node-line">
<span class="node-text">Please enable javascript.</span>
<span class="node-permissions">(----)</span>
</div>
<div class="node-children"></div>
</div>
</div>
<div id="settings">
<button>Settings</button>
<form>
<div>
<input type="checkbox" id="curvy-lines-checkbox">
<label for="curvy-lines-checkbox" title="Make the end bits of the tree lines curved">Curvy lines</label>
</div>
</form>
</div>
<div id="about">
<a href="about.html">About</a>
</div>
</body>
</html>