]> gitweb.michael.orlitzky.com - charm-bypass.git/commitdiff
index.html.in: support changing the service name via querystring
authorMichael Orlitzky <michael@orlitzky.com>
Wed, 1 Nov 2023 18:10:32 +0000 (14:10 -0400)
committerMichael Orlitzky <michael@orlitzky.com>
Wed, 1 Nov 2023 18:10:32 +0000 (14:10 -0400)
index.html.in

index 345c432b5d591b325f2aa5c39000a19392e44fe7..d1e0be72b18e314d7936425570909baa0581635c 100644 (file)
        /* Otherwise, leave it at "F" */
       }
 
+      /******************************/
+      /* Set the service name */
+      /******************************/
+      function set_service_id() {
+        const sid = document.getElementById("servicename");
+
+       /* Get the "servicename" from the querystring if it's there */
+        let params = new URLSearchParams(document.location.search);
+        if (params.get("servicename")) {
+          sid.textContent = params.get("servicename");
+        }
+
+       /* Otherwise, leave it at "BaltimoreLink" */
+      }
+
       /****************************************/
       /* Set and reposition the security code */
       /****************************************/
       /* Set the service identifier when the page has loaded */
       window.addEventListener("load", set_service_id);
 
+      /* Set the service name when the page has loaded */
+      window.addEventListener("load", set_service_name);
+
       /* Set the security code text when the page has loaded */
       window.addEventListener("load", set_code);