| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748 | <!DOCTYPE html><html>  <head>    <link rel="stylesheet" href="max80.css" />    <title>MAX80: Configuration</title>  <script src="max80.js"></script>  </head>  <body>    <script>inc("head.html")</script>    <h1 class="config">Configuration</h1>    <form id="setconfig" action="sys/setconfig" enctype="text/plain" method="post">      <fieldset class="network">	<legend>Network</legend>	<div>	  <label for="wifi.ssid">Network name (SSID):</label>	  <input type="text" id="wifi.ssid" name="wifi.ssid" />	</div>	<div>	  <label for="wifi.psk">Network password (PSK):</label>	  <input class="mono" type="password" id="wifi.psk" name="wifi.psk" size="50" />	  <button type="button" class="show" onclick="showpwd('wifi.psk',this)"><span class="show">show</span><span class="hide">hide</span></button>	</div>      </fieldset>      <fieldset class="datetime">	<legend>Date and Time</legend>	<div>	  <label for="TZ">Timezone configuration:</label>	  <input type="text" id="TZ" name="TZ" />	</div>	<div>	  <label for="sntp.enabled">Synchronize time from network:</label>	  <input type="checkbox" id="sntp.enabled" name="sntp.enabled" />	</div>	<div>	  <label for="sntp.server">NTP server:</label>	  <input type="text" id="sntp.server" name="sntp.server" />	</div>	<div>	  <label for="ip4.dhcp.nosntp">Ignore DHCP-provided NTP server:</label>	  <input type="checkbox" id="ip4.dhcp.nosntp" name="ip4.dhcp.nosntp" />	</div>      </fieldset>      <button class="submit" type="submit" disabled>Update configuration</button>    </form>    <script>loadform('setconfig','sys/getconfig')</script>    <script>translate()</script>  </body></html>
 |