mirror of
https://gitlab.com/zwirbel/illucat.git
synced 2025-12-15 17:58:20 +01:00
35 lines
941 B
HTML
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> |