-
Notifications
You must be signed in to change notification settings - Fork 78
/
index.html
62 lines (60 loc) · 2.32 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
<!--by https://github.com/yumusb/DNSLog-Platform-Golang -->
<!doctype html>
<html lang="zh-cn">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>DNSLOG Platform</title>
<meta name="keywords" content="dnslog,dnslog平台">
<meta name="description" content="一个无需注册就可以快速使用的DNSLog平台">
<link rel="shortcut icon" href="data:image/x-icon;," type="image/x-icon">
<link rel="canonical" href="https://getbootstrap.com/docs/5.1/examples/dashboard/">
<link href="/static/bootstrap.min.css" rel="stylesheet">
<link href="/static/dashboard.css" rel="stylesheet">
</head>
<body>
<header class="navbar navbar-dark sticky-top bg-dark flex-md-nowrap p-0 shadow">
<a class="navbar-brand col-md-12 col-lg-12 me-0 px-3">DNSLOG</a>
</header>
<div class="container-fluid">
<div class="row">
<main class="col-md-10 offset-md-1">
<div class="d-flex justify-content-between flex-wrap flex-md-nowrap align-items-center pt-3 pb-2 mb-3 border-bottom">
<h1 class="h2">Domain</h1>
</div>
<p class="lead">
<div class="form-group">
<label>Domains</label>
<select class="form-control" id="domains">
</select>
</div>
</p>
<p class="lead">subdomain:<span id="myDomain"></span><br>token:<span id="token"></span>
</p>
<button type="button" class="btn btn-primary" onclick="GetSubDomain()">Get Sub Domain</button>
<button type="button" class="btn btn-secondary" onclick="GetRecords()">Get Results</button>
<em>(Click to Copy)</em>
<div
class="d-flex justify-content-between flex-wrap flex-md-nowrap align-items-center pt-3 pb-2 mb-3 border-bottom">
<h1 class="h2">Results</h1>
</div>
<div class="table-responsive">
<table class="table table-striped table-sm">
<thead>
<tr>
<th scope="col">#</th>
<th scope="col">Record</th>
<th scope="col">Host</th>
<th scope="col">Time</th>
</tr>
</thead>
<tbody id="myRecords">
</tbody>
</table>
</div>
</main>
</div>
</div>
<script src="/static/main.js?v20211217"></script>
</body>
</html>