mirror of
https://github.com/xoseperez/espurna.git
synced 2026-03-05 07:54:18 +01:00
* migrate to esbuild from terser, since now js source needs bundling * (temporary?) hijack inline-source object handling to inline html files * get rid of legacy removeIf comments in source in favour of explicit removal either through bundling tree-shaking and / or manual module-* class element removal w/ jsdom * get rid of multi-layered custom checkboxes in favour of `appearance: none` directly styling the `input` elem also removes scripting part that was supposed to adjust for=... labels * update to html-minifier-terser, up-to-date html-minifier fork * update to iro.js 5.5.x, using npm to manage dependencies * build script can now update resulting html output (called after bundling stage, before minification)
28 lines
1015 B
HTML
28 lines
1015 B
HTML
<form id="form-nofuss" class="pure-form pure-form-aligned form-settings">
|
|
<div class="panel" id="panel-nofuss">
|
|
|
|
<div class="header">
|
|
<h1>NoFUSS</h1>
|
|
<h2>Automatically upgrade the firmware using a NOFUSS server. See <a href="https://github.com/mcspr/nofuss">mcspr/nofuss</a> for more details.</h2>
|
|
</div>
|
|
|
|
<div class="page">
|
|
<fieldset>
|
|
<div class="pure-control-group">
|
|
<label>Enabled</label>
|
|
<input class="checkbox-toggle" type="checkbox" name="nofussEnabled">
|
|
</div>
|
|
|
|
<div class="pure-control-group">
|
|
<label>Server</label>
|
|
<input name="nofussServer" type="text">
|
|
<span class="pure-form-message">
|
|
IP or hostname of the NoFUSS server that will be used for the upgrades.
|
|
</span>
|
|
</div>
|
|
</fieldset>
|
|
</div>
|
|
|
|
</div>
|
|
</form>
|