Files
sprocket-device-illucat/data/www/index.html
2018-09-13 01:17:11 +02:00

35 lines
941 B
HTML

<html>
<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>
<fieldset>
<legend>Network</legend>
<form action="/config" method="post">
<input type="hidden" name="fileName" value="/config.json">
<textarea name="config" class="js-config" rows="20" cols="50"></textarea>
<br>
<input type="submit" value="Submit">
</form>
</fieldset>
<fieldset>
<legend>NeoPixel Config</legend>
<form action="/config" method="post">
<input type="hidden" name="fileName" value="/pixelConfig.json">
<textarea name="config" class="js-config" rows="20" cols="50"></textarea>
<br>
<input type="submit" value="Submit">
</form>
</fieldset>
</body>
</html>