We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 127aeb0 commit ce11b7fCopy full SHA for ce11b7f
1 file changed
available.html
@@ -19,15 +19,17 @@
19
20
<body>
21
<h1>Available Domain</h1>
22
- <p>The subdomain <span id="subdomain"></span>.is-a.dev is available for registration, completely for free!</p>
23
- <a href="/">Return to the homepage to learn more about registering is-a.dev subdomains.</a>
+ <p>The subdomain <span id="subdomain"></span>.is-a.dev is available for registration!</p>
+ <a href="/">Return to the homepage to learn more.</a>
24
25
<script>
26
const params = new URLSearchParams(window.location.search);
27
const subdomain = params.get("d");
28
if (subdomain) {
29
const el = document.getElementById("subdomain");
30
if (el) el.textContent = subdomain;
31
+ } else {
32
+ window.location = "https://is-a.dev";
33
}
34
</script>
35
</body>
0 commit comments