summaryrefslogtreecommitdiffstats
path: root/install/static/host.js
diff options
context:
space:
mode:
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',