Files
9090tool/archive/index-old.html
T
2023-04-13 07:57:37 -04:00

93 lines
3.1 KiB
HTML

<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Scanner Configuration Tool</title>
<link href="style.css" rel="stylesheet" />
</head>
<body>
<header>
<h1>Motorola Scanner Configuration Tool</h1>
</header>
<main>
<section class="lookup" id="config-string" >
<!-- TODO Remove this from a form and use div/span to create the layout -->
<h2>Configuration Lookup</h2>
<p class="input">Complete Configuration Code Lookup</p>
<select id="devices" name="devices">
<!-- TODO populate based on array -->
<option value='MC3190'>MC3190</option>
<option value='MC32N0'>MC32N0</option>
<option value="MC9090">MC9090</option>
<option value="MC9190">MC9190</option>
<option value="MC92N0">MC92N0</option>
</select>
-
<input type="text" placeholder="Enter Config" id="configuration-string" />
<button class="btnSubmitStr">Submit</button>
<button class="btnClear">Clear</button>
<p class="results hidden">
<!-- TODO Dynamically change text, display as a table maybe -->
Results Go Here
</p>
</section>
<form id="code-lookup" class='hidden'>
<!-- TODO Remove this from a form and use div/span to create the layout -->
<h2>Individual Lookup</h2>
<p class="input">Specific Configuration Lookup</p>
<select id="devices" name="devices">
<!-- <option value='3190'>MC3190</option>
<option value='32n0'>MC32N0</option>
<option value="9090">MC9090</option>
<option value="9190">MC9190</option>
<option value="92n0">MC92N0</option> -->
</select>
- G0
<select id="scanner" name="scanner">
<!-- TODO populate based on 'devices' -->
<option value='a'>a</option>
</select>
<select id='display' name='display'>
<!-- TODO populate based on 'devices' -->
<option value='a'>a</option>
</select>
<select id='memory' name='memory'>
<!-- TODO populate based on 'devices' -->
<option value='a'>a</option>
</select>
<select id='keypad' name='keypad'>
<!-- TODO populate based on 'devices' -->
<option value='a'>a</option>
</select>
<select id='os' name='os'>
<!-- TODO populate based on 'devices' -->
<option value='a'>a</option>
</select>
<select id='features' name='features'>
<!-- TODO (2-digits) populate based on 'devices' -->
<option value='a'>A6</option>
</select>
<select id='region' name=region'>
<!-- TODO (2-digits) populate based on 'devices' -->
<option value='a'>WR</option>
</select>
<br>
<button class="btnSubmit">Submit</button>
<button class="btnReset">Reset</button>
</form>
<script src="script.js"></script>
</main>
</body>
</html>