aboutsummaryrefslogtreecommitdiffstats
path: root/templates/wifi.html
diff options
context:
space:
mode:
authorficus <ficus@robocracy.org>2012-09-15 22:50:14 +0200
committerficus <ficus@robocracy.org>2012-09-15 22:50:14 +0200
commitced83335a5a338cb9c24956b96da526465d94df8 (patch)
treeb345cd21dfcbb9e660aceb2433c92bd50848938f /templates/wifi.html
parent57a1e70dee45f5cd9493d6d23f8fc7b6435d5388 (diff)
downloadtui-ced83335a5a338cb9c24956b96da526465d94df8.tar.gz
tui-ced83335a5a338cb9c24956b96da526465d94df8.zip
refactor to distributable format
Diffstat (limited to 'templates/wifi.html')
-rw-r--r--templates/wifi.html38
1 files changed, 0 insertions, 38 deletions
diff --git a/templates/wifi.html b/templates/wifi.html
deleted file mode 100644
index 3e41788..0000000
--- a/templates/wifi.html
+++ /dev/null
@@ -1,38 +0,0 @@
-{% import "lib.html" as lib %}
-{% extends "base.html" %}
-{% block body %}
-
-<form action="/wifi/" method="POST" class="form-horizontal">
-<legend>WiFi Configuration</legend>
-
-{% if not status.wifi %}
-<span class="text-error">Could not find the WiFi hardware device!</span>
-{% else %}
-
-{{ lib.formcheckbox(form, formerr, 'wifienable', 'Enable the radio', 'true') }}
-{{ lib.formcheckbox(form, formerr, 'torifylanenable', 'Transparently "Tor-ify" this network interface', 'true') }}
-
-<legend>Radio</legend>
-{{ lib.forminput(form, formerr, 'wifissid', 'SSID name', 'internet') }}
-{{ lib.forminput(form, formerr, 'wifipower', 'Transmit Power', 'high, low') }}
-{{ lib.forminput(form, formerr, 'wifichannel', 'Channel', '11') }}
-
-<legend>Network Address</legend>
-{{ lib.forminput(form, formerr, 'ipv4addr', 'IPv4 Address', '0.0.0.0') }}
-{{ lib.forminput(form, formerr, 'ipv4netmask', 'Netmask', '255.255.0.0') }}
-{{ lib.forminput(form, formerr, 'ipv4gateway', 'Gateway IP Address', '0.0.0.0') }}
-
-<legend>DHCP Server</legend>
-{{ lib.forminput(form, formerr, 'dhcpbase', 'DHCP Range Base', '192.168.1.100') }}
-{{ lib.forminput(form, formerr, 'dhcptop', 'DHCP Range Top', '192.168.1.200') }}
-{{ lib.forminput(form, formerr, 'dhcptime', 'Lease Time', '12h') }}
-
-<div class="pull-right">
-<a href="."><button class="btn" type="button">Reset</button></a>
-<button type="submit" class="btn btn-primary" type="button">
-Save</button>
-</div>
-</form>
-{% endif %}
-
-{% endblock %}