AudioHTML/control.html

133 lines
7.1 KiB
HTML

<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<title></title>
<link href="css/bootstrap.min.css" rel="stylesheet">
<link href="css/app.css" rel="stylesheet">
</head>
<body class="h-100 text-center text-bg-dark content-warp">
<div class="d-flex w-100 h-100 mx-auto flex-column">
<header class="mb-auto pb-5">
<div class="dotblock d-flex justify-content-between px-5 py-4">
<div class="fs-3">GEAZAN</div>
<div></div>
</div>
<div class="d-flex justify-content-center fw-bold border-black nav">
<div class="">
<a href="home.html">HOME</a>
</div>
<div class=""><a href="filter.html">FILTER</a></div>
<div class=""><a href="fs.html">FS</div>
<div class=""><a href="eq.html">EQ</a></div>
<div class=""><a href="ducking.html">DUCKING</a></div>
<div class=""><a href="network.html">NETWORK</a></div>
<div class="">
<a href="security.html">SECURITY</a>
</div>
<div class="active"><a href="control.html">CONTROL</a></div>
<div class="last "><a href="system.html">SYSTEM</a></div>
</div>
</header>
<main class="px-3 d-flex justify-content-center">
<div class="form">
<div class="border border-black m-6 password-form">
<div class=" m-5 mx-auto form" style="width: 700px;">
<div class="mb-3 row">
<label for="staticEmail" class="col-6 col-form-label">Power</label>
<div class="col-6 ">
<div class="redio-switche float-start" style="display:inline-block;">
<input type="radio" class="btn-check" name="power" id="power-on" autocomplete="off">
<label class="btn btn-sm redio-btn on-btn" for="power-on">ON</label>
<input type="radio" class="btn-check" name="power" id="power-off"
autocomplete="off">
<label class="btn btn-sm redio-btn off-btn" for="power-off">OFF</label>
</div>
</div>
</div>
<div class="mb-3 row">
<label for="staticEmail" class="col-6 col-form-label">Hibernation</label>
<div class="col-6">
<div class="redio-switche float-start" style="display:inline-block;">
<input type="radio" class="btn-check" name="hibernation" id="hibernation-on"
autocomplete="off">
<label class="btn btn-sm redio-btn on-btn" for="hibernation-on">ENABLE</label>
<input type="radio" class="btn-check" name="hibernation" id="hibernation-off"
autocomplete="off">
<label class="btn btn-sm redio-btn off-btn" for="hibernation-off">DISABLE</label>
</div>
</div>
</div>
<div class="mb-3 row">
<label for="staticEmail" class="col-6 col-form-label">Hibernation Timer(min)</label>
<div class="col-6">
<input type="number" class="form-control float-start" id="inputPassword"
style="width: 100px;">
</div>
</div>
<div class="mb-3 row">
<label for="inputPassword" class="col-6 col-form-label">Unit Trigger</label>
<div class="col-6">
<div class="redio-switche float-start" style="display:inline-block;">
<input type="radio" class="btn-check" name="trigger" id="trigger-on"
autocomplete="off">
<label class="btn btn-sm redio-btn on-btn" for="trigger-on">ENABLE</label>
<input type="radio" class="btn-check" name="trigger" id="trigger-off"
autocomplete="off">
<label class="btn btn-sm redio-btn off-btn" for="trigger-off">DISABLE</label>
</div>
</div>
</div>
<div class="mb-3 row">
<label for="inputPassword" class="col-6 col-form-label">Analog signal delection</label>
<div class="col-6">
<div class="redio-switche float-start" style="display:inline-block;">
<input type="radio" class="btn-check" name="delection" id="delection-on"
autocomplete="off">
<label class="btn btn-sm redio-btn on-btn" for="delection-on">ENABLE</label>
<input type="radio" class="btn-check" name="delection" id="delection-off"
autocomplete="off">
<label class="btn btn-sm redio-btn off-btn" for="delection-off">DISABLE</label>
</div>
</div>
</div>
<div class="mb-3 row">
<label for="inputPassword" class="col-6 col-form-label">Control Lock</label>
<div class="col-6">
<div class="redio-switche float-start" style="display:inline-block;">
<input type="radio" class="btn-check" name="lock" id="lock-on"
autocomplete="off">
<label class="btn btn-sm redio-btn on-btn" for="lock-on">LOCK</label>
<input type="radio" class="btn-check" name="lock" id="lock-off"
autocomplete="off">
<label class="btn btn-sm redio-btn off-btn" for="lock-off">UNLOCK</label>
</div>
</div>
</div>
</div>
</div>
<div class="mt-5 pb-5">
<button type="button" class="btn btn-dark border border-black px-5">Save</button>
</div>
</div>
</main>
<footer class="mt-auto text-white-50">
<div class="dotblock d-flex justify-content-between px-5 py-4">
<div class="">Geazan</div>
<div>www.geazan.com</div>
</div>
</footer>
</div>
</body>
</html>