mirror of
https://github.com/0x1d/esp8266-laser.git
synced 2025-12-14 18:15:22 +01:00
57 lines
2.0 KiB
HTML
57 lines
2.0 KiB
HTML
<!DOCTYPE html>
|
|
<html>
|
|
<head>
|
|
<meta http-equiv="Content-type" content="text/html; charset=utf-8">
|
|
<title>Esp8266 laserspiro controller</title>
|
|
<link rel="icon" type="image/png" sizes="16x16" href="/favicon-32x32.png">
|
|
<link rel="stylesheet" type="text/css" href="styles.css">
|
|
<script src="scripts.js"></script>
|
|
</head>
|
|
<body>
|
|
<div class="content">
|
|
<div id="prototypControls" class="spiro-control container">
|
|
<label>L</label>
|
|
<input type="range" class="laser slider" value="1" min="1" max="128">
|
|
<label>M1</label>
|
|
<input type="range" class="motor slider" value="1" min="1" max="128" data-motor-nr="1">
|
|
<label>M2</label>
|
|
<input type="range" class="motor slider" value="1" min="1" max="128" data-motor-nr="2">
|
|
<label>M3</label>
|
|
<input type="range" class="motor slider" value="1" min="1" max="128" data-motor-nr="3">
|
|
</div>
|
|
<div id="prototypControls">
|
|
<text class="sectionDesc">last uri:</text>
|
|
<div id="uriDiv"></div>
|
|
<text class="sectionDesc">last respone:</text>
|
|
<br>
|
|
<div id="response">
|
|
</div>
|
|
<br>
|
|
</div>
|
|
<div class="settings container">
|
|
<span class="heading">Wifi Settings</span>
|
|
<form>
|
|
<ul class="flex-outer">
|
|
<li>
|
|
<label for="first-name">SSID</label>
|
|
<input type="text" id="first-name" placeholder="service station id">
|
|
</li>
|
|
<li>
|
|
<label for="last-name">Password</label>
|
|
<input type="text" id="last-name" placeholder="station password">
|
|
</li>
|
|
<li>
|
|
<p>Age</p>
|
|
<ul class="flex-inner">
|
|
<!-- list items here -->
|
|
</ul>
|
|
</li>
|
|
<li>
|
|
<button type="submit">Submit</button>
|
|
</li>
|
|
</ul>
|
|
</form>
|
|
</div>
|
|
</div>
|
|
</body>
|
|
</html> |