Files
NetDomainManager/views/newdns.handlebars
T

26 lines
689 B
Handlebars
Raw Normal View History

2026-05-14 18:33:29 -04:00
<form action="/dns/new/{{domain.id}}">
<label for="dns_record_type">Type</label>
2026-05-14 18:37:02 -04:00
<br>
2026-05-14 18:33:29 -04:00
<select name="dns_record_type" id="dns_record_type">
{{#each supportedRecordTypes}}
2026-05-14 18:35:40 -04:00
<option value="{{this}}">{{this}}</option>
2026-05-14 18:33:29 -04:00
{{/each}}
</select>
2026-05-14 18:37:02 -04:00
<br>
2026-05-14 18:33:29 -04:00
<label for="dns_record_name">Name</label>
2026-05-14 18:35:40 -04:00
<br>
2026-05-14 18:33:29 -04:00
<input type="text" name="dns_record_name" id="dns_record_name">
2026-05-14 18:36:26 -04:00
<br>
2026-05-14 18:33:29 -04:00
<label for="dns_record_host">Host</label>
2026-05-14 18:35:40 -04:00
<br>
2026-05-14 18:33:29 -04:00
<input type="text" name="dns_record_host" id="dns_record_host">
2026-05-14 18:36:26 -04:00
<br>
2026-05-14 18:33:29 -04:00
<label for="dns_record_ttl">TTL</label>
2026-05-14 18:35:40 -04:00
<br>
2026-05-14 18:33:29 -04:00
<input type="text" name="dns_record_ttl" id="dns_record_ttl">
2026-05-14 18:36:26 -04:00
<br>
2026-05-14 18:33:29 -04:00
</form>