-
-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathindex.html
55 lines (47 loc) · 1.83 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
---
title: "Validator"
layout: page
stylesheets:
- ./assets/style.css?v=202411191040
modules:
- ./assets/spa.js?v=202411191040
scripts:
- ./lib/punycode.js-2.3.1/punycode.js
---
<form class="form">
<p class="mb-3">
<label class="form-label" for="url">RDAP URL:</label>
<input class="form-control" type="url" id="url" placeholder="https://rdap.org/domain/example.com">
</p>
<p class="mb-3">
<label class="form-label" for="response-type">Expected response type:</label>
<select class="form-control form-select" id="response-type"></select>
</p>
<p class="mb-3">
<label class="form-label" for="server-type">Server type:</select>
<select class="form-control form-select" id="server-type"></select>
</label></p>
<p class="form-check">
<input class="form-check-input" type="checkbox" id="errors-only">
<label class="form-check-label" for="errors-only">Show errors only</label>
</p>
<br>
<p>
<input class="btn btn-secondary" id="button" type="button" value="Test" disabled>
<input class="btn btn-secondary" id="report-button" type="button" value="Report..." disabled title="Send a copy of this report to the registry/registrar...">
</p>
</form>
<div id="result-container" hidden>
<div class="card" style="margin-right:0.5em">
<div class="card-header">Results</div>
<ul class="list-group list-group-flush" id="results"></ul>
</div>
<div class="card" style="margin-left:0.5em">
<div class="card-header">RDAP Response</div>
<div class="card-body" id="tree"></div>
</div>
</div>
<p>This tool is also available as a command-line tool and JavaScript
library. For more information, <a href="https://github.com/rdap-org/validator.rdap.org">
check out the GitHub repository</a>.</p>
<p>See also: <a target="_blank" href="https://webrdapct.icann.org">ICANN RDAP Conformance Tool</a>.</p>