-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
86 lines (81 loc) · 2.13 KB
/
index.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
<!DOCTYPE html>
<html>
<head>
<script src="lib/remotestorage.min.js"></script>
<script src="dns-zones_module.js"></script>
<script src="helpers.js"></script>
<script src="gui.js"></script>
<script src="zones.js"></script>
<script src="records.js"></script>
<script src="remote.js"></script>
<script src="main.js"></script>
<link rel="stylesheet" href="undns.css">
</head>
<body>
<div id="undns">
Edit your Zone files and update your domain on un.ht.
<div id="zones_crud">
<div class="templates">
<li id="zone_li_template" class="zone_li">
<span class="zone name" contenteditable="true" >Name</span>
<form name="soa">
<table>
<tr>
<td> mname </td>
<td> rname </td>
<td> serial </td>
<td> refresh </td>
<td> retry </td>
<td> expire </td>
</tr>
<tr>
<td><input name="mname"/></td>
<td><input name="rname"/></td>
<td><input name="serial"/></td>
<td><input name="refresh"/></td>
<td><input name="retry"/></td>
<td><input name="expire"/></td>
</tr>
</table>
<input type="hidden" name="zone_id"/>
</form>
</li>
</div>
<button id="zones_create" class="new_button" onclick="gui_create_zone();">Create</button>
<button id="zones_edit" onclick="gui_edit_zone();">Edit</button>
<button id="zones_delete" class="remove_button" onclick="gui_delete_zone();">Delete</button>
</div>
<div id="rules_crud">
<div class="templates">
<li id="record_li_template" class="record_li">
<table>
<tr>
<td> name </td>
<td> type </td>
<td> value </td>
<td> ttl </td>
<td>
<button class="remove_button">Del</button>
</td>
</tr>
<tr>
<td><input name="name" /></td>
<td><input name="type" /></td>
<td><input name="value" /></td>
<td><input name="ttl" /></td>
<td>
<button onclick="new_record(current_records_div)" >New</button>
</td>
</tr>
</table>
</li>
<div id="records_div_template" class="records_div">
</div>
</div>
</div>
<div class="messages">
<span id="msg"></span>
</div>
</div>
</body>
</html>