2023-12-20 03:21:06 +01:00
|
|
|
<!DOCTYPE html>
|
|
|
|
<html>
|
|
|
|
|
|
|
|
<head>
|
|
|
|
<meta charset="UTF-8">
|
|
|
|
<meta http-equiv="X-UA-Compatible" content="IE=edge">
|
|
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
2023-12-20 03:28:22 +01:00
|
|
|
<title>IXVD - Parked Domains</title>
|
2023-12-20 03:21:06 +01:00
|
|
|
<link rel="stylesheet" href="/obj/css/main.css">
|
|
|
|
</head>
|
|
|
|
|
|
|
|
|
|
|
|
<body>
|
|
|
|
<main>
|
|
|
|
<h1>Parked Domains</h1>
|
|
|
|
<a href="/">Home</a>
|
|
|
|
<p>
|
|
|
|
You found one of our parked domains! <br/>
|
|
|
|
For more details on <span id="domain">the domain</span>, please e-mail: <br/>
|
|
|
|
<strong>domains (at) ixvd (dot) net</strong>
|
|
|
|
</p>
|
|
|
|
<script>
|
|
|
|
let domainSpan = document.querySelector("#domain");
|
|
|
|
let searchParams = new URLSearchParams(document.location.search);
|
|
|
|
if (searchParams.has("domain")) {
|
|
|
|
domainSpan.innerText = searchParams.get("domain")
|
|
|
|
}
|
|
|
|
</script>
|
|
|
|
</main>
|
|
|
|
</body>
|
|
|
|
</html>
|