generated from nathanwoodburn/python-webserver-template
fix: Update regex to allow xn-- domains
All checks were successful
Build Docker / BuildImage (push) Successful in 30s
All checks were successful
Build Docker / BuildImage (push) Successful in 30s
This commit is contained in:
@@ -12,7 +12,7 @@ document.getElementById("domain").addEventListener("keyup", function (event) {
|
||||
|
||||
function getSSL() {
|
||||
// Get the input value
|
||||
const domain = document.getElementById("domain").value;
|
||||
const domain = document.getElementById("domain").value.trim().toLowerCase();
|
||||
// Set the domain parameter
|
||||
const params = new URLSearchParams();
|
||||
params.append("domain", domain);
|
||||
|
||||
Reference in New Issue
Block a user