| 41 | } |
| 42 | |
| 43 | function createWhoisSearchBox() { |
| 44 | let whoisHTML = '<h3>Whois</h3>\n'; |
| 45 | whoisHTML += '<form id="whois_search"><label id="zoneLabel" for="whois_input">Please enter a zone.</label>\n'; |
| 46 | whoisHTML += '<input type="text" value="" name="whoisSearch" id="whois_input"></input></form>\n'; |
| 47 | whoisHTML += '<div id="dynamic_whois" class="bg-light"></div>\n'; |
| 48 | document.getElementById("dynamicWhoisSection").innerHTML = whoisHTML; |
| 49 | document.getElementById("whois_search").addEventListener("submit", whois_lookup); |
| 50 | } |
| 51 | |
| 52 | if (DynamicWhoisEnabled) { |
| 53 | createWhoisSearchBox(); |