summaryrefslogtreecommitdiffstats
path: root/modules-available/webinterface/templates/https.html
diff options
context:
space:
mode:
authorUdo Walter2017-09-25 17:16:25 +0200
committerUdo Walter2017-09-25 17:16:25 +0200
commitb9386525a9e3b6be5f16e515432bf0af2579eef7 (patch)
tree97648a3bf24da7d949b2fe63b47a23ded14fc9ca /modules-available/webinterface/templates/https.html
parent[vmstore] fixed inconsistencies (diff)
downloadslx-admin-b9386525a9e3b6be5f16e515432bf0af2579eef7.tar.gz
slx-admin-b9386525a9e3b6be5f16e515432bf0af2579eef7.tar.xz
slx-admin-b9386525a9e3b6be5f16e515432bf0af2579eef7.zip
[webinterface] fixed inconsistencies
Diffstat (limited to 'modules-available/webinterface/templates/https.html')
-rw-r--r--modules-available/webinterface/templates/https.html37
1 files changed, 31 insertions, 6 deletions
diff --git a/modules-available/webinterface/templates/https.html b/modules-available/webinterface/templates/https.html
index ecfe5f5d..365e2fee 100644
--- a/modules-available/webinterface/templates/https.html
+++ b/modules-available/webinterface/templates/https.html
@@ -28,7 +28,12 @@
{{#httpsEnabled}}
<div class="input-group" onclick="$('#moff').prop('checked', true);
$('#wcustom').hide()">
- <span class="input-group-addon"><input id="moff" type="radio" name="mode" value="off"></span>
+ <span class="input-group-addon">
+ <div class="radio" style="margin: 0; line-height: normal; text-align: left">
+ <input id="moff" type="radio" name="mode" value="off">
+ <label style="padding: 0"></label>
+ </div>
+ </span>
<span class="form-control">
{{lang_noHttps}}
</span>
@@ -36,14 +41,24 @@
{{/httpsEnabled}}
<div class="input-group" onclick="$('#mrandom').prop('checked', true);
$('#wcustom').hide()">
- <span class="input-group-addon"><input id="mrandom" type="radio" name="mode" value="random"></span>
+ <span class="input-group-addon">
+ <div class="radio" style="margin: 0; line-height: normal; text-align: left">
+ <input id="mrandom" type="radio" name="mode" value="random">
+ <label style="padding: 0"></label>
+ </div>
+ </span>
<span class="form-control">
{{lang_randomCert}}
</span>
</div>
<div class="input-group" onclick="$('#mcustom').prop('checked', true);
$('#wcustom').show()">
- <span class="input-group-addon"><input id="mcustom" type="radio" name="mode" value="custom"></span>
+ <span class="input-group-addon">
+ <div class="radio" style="margin: 0; line-height: normal; text-align: left">
+ <input id="mcustom" type="radio" name="mode" value="custom">
+ <label style="padding: 0"></label>
+ </div>
+ </span>
<span class="form-control">
{{lang_customCert}}
</span>
@@ -73,13 +88,23 @@ MIIFfTCCA...
<br>
<div class="input-group">
- <span class="input-group-addon"><input id="httpsredirect" type="checkbox" name="httpsredirect" value="on" {{redirect_checked}}></span>
+ <span class="input-group-addon">
+ <div class="checkbox" style="margin: 0; line-height: normal; text-align: left">
+ <input id="httpsredirect" type="checkbox" name="httpsredirect" value="on" {{redirect_checked}}>
+ <label style="padding: 0"></label>
+ </div>
+ </span>
<span class="form-control" onclick="$('#httpsredirect').prop('checked', !$('#httpsredirect').prop('checked'))">
{{lang_httpsRedirect}}
</span>
</div>
<div class="input-group">
- <span class="input-group-addon"><input id="usehsts" type="checkbox" name="usehsts" value="on" {{hsts_checked}}></span>
+ <span class="input-group-addon">
+ <div class="checkbox" style="margin: 0; line-height: normal; text-align: left">
+ <input id="usehsts" type="checkbox" name="usehsts" value="on" {{hsts_checked}}>
+ <label style="padding: 0"></label>
+ </div>
+ </span>
<span class="form-control" onclick="$('#usehsts').prop('checked', !$('#usehsts').prop('checked'))">
{{lang_useHsts}}
</span>
@@ -87,7 +112,7 @@ MIIFfTCCA...
<br>
<div class="pull-right">
- <button type="submit" class="btn btn-primary">{{lang_save}}</button>
+ <button type="submit" class="btn btn-primary"><span class="glyphicon glyphicon-floppy-disk"></span> {{lang_save}}</button>
</div>
</div>
</div>