basic web config

This commit is contained in:
2018-08-29 09:57:58 +02:00
parent 52fdf0e5e0
commit 74e9b8df4f
6 changed files with 45 additions and 22 deletions

View File

@@ -1,7 +1,22 @@
<html>
<head>
</head>
<body>
<h1>Sprocket</h1>
</body>
<head>
<script src="jquery-3.3.1.min.js"></script>
<script src="script.js"></script>
</head>
<body>
<h1>Sprocket Config</h1>
<button class="js-restart">Restart</button>
<br>
<br>
<form action="/config" method="post">
<textarea name="config" class="js-config" rows="20" cols="50"></textarea>
<br>
<input type="submit" value="Submit">
</form>
</body>
</html>