summaryrefslogtreecommitdiffstats
path: root/install/static/host.js
diff options
context:
space:
mode:
authorEndi S. Dewata <edewata@redhat.com>2011-01-13 17:20:12 +0700
committerEndi Sukma Dewata <edewata@people01.fedoraproject.org>2011-01-15 04:55:16 +0000
commitfb1f9ecf9ffa615653ac0fc62c84e27851835a6d (patch)
tree7db7d7e96d79bcb30f65b38f65c3015a3ea902b6 /install/static/host.js
parent6650dbf6a47f162db3e874c187fce693a362517f (diff)
downloadfreeipa-fb1f9ecf9ffa615653ac0fc62c84e27851835a6d.tar.gz
freeipa-fb1f9ecf9ffa615653ac0fc62c84e27851835a6d.tar.xz
freeipa-fb1f9ecf9ffa615653ac0fc62c84e27851835a6d.zip
Certificate and Kerberos key status adjustments.
The OTP field has been moved into a separate row to avoid line wrapping. The line height inside tables has been increased to avoid overlapping buttons in certificate status panel.
Diffstat (limited to 'install/static/host.js')
-rw-r--r--install/static/host.js14
1 files changed, 12 insertions, 2 deletions
diff --git a/install/static/host.js b/install/static/host.js
index 2e82936be..76c5943cd 100644
--- a/install/static/host.js
+++ b/install/static/host.js
@@ -221,7 +221,9 @@ function host_provisioning_status_widget(spec) {
that.widget_create(container);
- var table = $('<table/>').appendTo(container);
+ var table = $('<table/>', {
+ 'class': 'kerberos-key-status'
+ }).appendTo(container);
var tr = $('<tr/>').appendTo(table);
@@ -262,12 +264,20 @@ function host_provisioning_status_widget(spec) {
td = $('<td/>').appendTo(tr);
+ tr = $('<tr/>').appendTo(table);
+
+ td = $('<td/>').appendTo(tr);
+
+ td = $('<td/>').appendTo(tr);
+
$('<input/>', {
'type': 'text',
'name': 'otp',
- 'size': 10
+ 'class': 'otp'
}).appendTo(td);
+ td = $('<td/>').appendTo(tr);
+
$('<input/>', {
'type': 'button',
'name': 'enroll',