diff options
author | ficus <ficus@robocracy.org> | 2012-09-15 19:46:49 +0200 |
---|---|---|
committer | ficus <ficus@robocracy.org> | 2012-09-15 19:46:49 +0200 |
commit | 42725426ec02d359b67cd8d665afe17882d38958 (patch) | |
tree | 148c4082998f7d0b82ec4f22515d7626fca6a0e7 /templates/tor.html | |
parent | a304d7a56563b16ca98d9b45ebed521c52f6347c (diff) | |
download | tui-42725426ec02d359b67cd8d665afe17882d38958.tar.gz tui-42725426ec02d359b67cd8d665afe17882d38958.zip |
more WIP
Diffstat (limited to 'templates/tor.html')
-rw-r--r-- | templates/tor.html | 19 |
1 files changed, 19 insertions, 0 deletions
diff --git a/templates/tor.html b/templates/tor.html new file mode 100644 index 0000000..a1f30dc --- /dev/null +++ b/templates/tor.html @@ -0,0 +1,19 @@ +{% import "lib.html" as lib %} +{% extends "base.html" %} +{% block body %} + +<form action="/tor/" method="POST" class="form-horizontal"> +<legend>Tor Network Configuration</legend> + +{{ lib.formcheckbox(form, formerr, 'torenable', 'Enable Tor daemon', 'true') }} +{{ lib.formcheckbox(form, formerr, 'torrelayenable', 'Enable Tor Relay', 'true') }} +{{ lib.formcheckbox(form, formerr, 'torbridgeenable', 'Enable Tor Bridge', 'true') }} + +<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> + +{% endblock %} |