summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMike Crute <mike@crute.us>2020-01-03 23:14:16 +0000
committerMike Crute <mike@crute.us>2020-01-03 23:14:16 +0000
commit1a33a24e60ef985db446deb46b193ab57781ea0e (patch)
tree6ce93a363717ef59d265350afe39606eeccfce32
parent5e485ea6d987004b85d2bbbfbc021aafa2c1104b (diff)
downloadgo_ddns_manager-1a33a24e60ef985db446deb46b193ab57781ea0e.tar.bz2
go_ddns_manager-1a33a24e60ef985db446deb46b193ab57781ea0e.tar.xz
go_ddns_manager-1a33a24e60ef985db446deb46b193ab57781ea0e.zip
Remove old html page
-rw-r--r--dns.html85
1 files changed, 0 insertions, 85 deletions
diff --git a/dns.html b/dns.html
deleted file mode 100644
index 8a44f6d..0000000
--- a/dns.html
+++ /dev/null
@@ -1,85 +0,0 @@
1<html>
2 <head>
3 <title>Test Page</title>
4 <style type="text/css">
5 html {
6 text-align: center;
7 }
8 table {
9 border: 1px solid #999;
10 border-collapse: collapse;
11 margin: auto;
12 }
13 td, th {
14 padding: 0.5em;
15 border: 1px solid #999;
16 }
17 th {
18 background: #ccc;
19 }
20 .dns-type {
21 text-align: center;
22 }
23 </style>
24 </head>
25 <body>
26 <h1>DNS Manager</h1>
27 <b>Zone:</b> <select>
28 <option>crute.me</option>
29 <option>crute.us</option>
30 <option>crute.org</option>
31 <option>faldowski.com</option>
32 <option>softgroupcorp.com</option>
33 <option>16.172.in-addr.arpa</option>
34 <option>31.172.in-addr.arpa</option>
35 </select>
36 <b>View:</b> <select>
37 <option>Internal</option>
38 <option>External</option>
39 </select>
40 <b>Records:</b> <select>
41 <option>ANY</option>
42 <option>A</option>
43 <option>SOA</option>
44 <option>CNAME</option>
45 <option>AAAA</option>
46 <option>MX</option>
47 <option>TXT</option>
48 <option>PTR</option>
49 <option>NS</option>
50 <option>SRV</option>
51 <option>SPF</option>
52 </select>
53 <br />
54 <b>Search:</b> <input type="text" />
55 <input type="submit" value="Search" />
56 <br />
57 <input type="submit" value="Add Record" />
58
59 <br /><br />
60 <table>
61 <tr>
62 <th>Name</th>
63 <th>RR Type</th>
64 <th>TTL</th>
65 <th>RR Data</th>
66 <th>Action</th>
67 </tr>
68 {{ range $r := . }}
69 {{ range $_, $rr := $r.RR }}
70 <tr>
71 {{ $h := $rr.Header }}
72 <td>{{ $h.Name }}</td>
73 <td class="dns-type">{{ dnsType $h }}</td>
74 <td title="{{ $h.Ttl}}">{{ dnsTTL $h }}</td>
75 <td>{{ getValue $rr }}</td>
76 <td>
77 <a href="#">Delete</a> |
78 <a href="#">Update</a>
79 </td>
80 </tr>
81 {{ end }}
82 {{ end }}
83 </table>
84 </body>
85</html>