Files

21 lines
575 B
Handlebars
Raw Permalink Normal View History

2026-05-14 11:15:30 -04:00
<p>Register a new domain</p>
{{#if errors}}
2026-05-14 13:39:55 -04:00
<ul id="RequestErrors">
2026-05-14 11:15:30 -04:00
{{#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>