update DNS page

This commit is contained in:
2026-05-14 17:51:43 -04:00
parent e015d8d63b
commit b45ed4fe88
3 changed files with 29 additions and 18 deletions
+2 -1
View File
@@ -104,7 +104,8 @@ body {
} }
#ConfigureDNSTable { #ConfigureDNSTable {
width: 400px; display: inline-block;
float: left;
} }
/* Tables */ /* Tables */
+1
View File
@@ -13,6 +13,7 @@ const recordTypeMap = {
"host": "A", "host": "A",
"cname": "CNAME", "cname": "CNAME",
"txt": "TXT", "txt": "TXT",
"mx": "MX",
"srv": "SRV" "srv": "SRV"
} }
+11 -2
View File
@@ -1,6 +1,7 @@
<p>Configuring DNS records for {{domain.domain}}.{{domain.tld}}</p> <p>Configuring DNS records for {{domain.domain}}.{{domain.tld}}</p>
<table id="ConfigureDNSTable"> <div id="ConfigureDNSTable">
<table>
<tr> <tr>
{{#each dnsRecordsHeaders}} {{#each dnsRecordsHeaders}}
<th>{{this}}</th> <th>{{this}}</th>
@@ -13,5 +14,13 @@
{{/each}} {{/each}}
</tr> </tr>
{{/each}} {{/each}}
</table> </table>
</div>
<div class="ContentBox" id="DomainOptions">
<div style="width: 200px;"></div>
<p class="TitleText">Options</p>
<ul>
<li><a href="/dns/new">Add New Record</a></li>
</ul>
</div>