domain registration, start on DNS

This commit is contained in:
2026-05-14 11:15:30 -04:00
parent 8c55871866
commit 43d4730803
12 changed files with 415 additions and 28 deletions
+21
View File
@@ -0,0 +1,21 @@
<p>Register a new domain</p>
{{#if errors}}
<ul>
{{#each errors}}
<li>{{this.message}}</li>
{{/each}}
</ul>
{{/if}}
<form action="/domains/new" method="post">
<input type="hidden" name="_csrf" value="{{csrfToken}}">
<input type="text" name="register_domain_label">
<select name="register_domain_tld">
{{#each supportedTLDs}}
<option value="{{this}}">.{{this}}</option>
{{/each}}
</select>
<br><br>
<input type="submit" class="DefaultButton" value="Register">
</form>