Skip to content

Commit ce11b7f

Browse files
authored
Update available.html
1 parent 127aeb0 commit ce11b7f

File tree

1 file changed

+4
-2
lines changed

1 file changed

+4
-2
lines changed

available.html

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -19,15 +19,17 @@
1919

2020
<body>
2121
<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>
22+
<p>The subdomain <span id="subdomain"></span>.is-a.dev is available for registration!</p>
23+
<a href="/">Return to the homepage to learn more.</a>
2424

2525
<script>
2626
const params = new URLSearchParams(window.location.search);
2727
const subdomain = params.get("d");
2828
if (subdomain) {
2929
const el = document.getElementById("subdomain");
3030
if (el) el.textContent = subdomain;
31+
} else {
32+
window.location = "https://is-a.dev";
3133
}
3234
</script>
3335
</body>

0 commit comments

Comments
 (0)