-
Notifications
You must be signed in to change notification settings - Fork 0
/
whois.html
51 lines (42 loc) · 1.92 KB
/
whois.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
<html>
<head>
<!-- Latest compiled and minified CSS -->
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/css/bootstrap.min.css" integrity="sha384-BVYiiSIFeK1dGmJRAkycuHAHRg32OmUcww7on3RYdg4Va+PmSTsz/K68vbdEjh4u" crossorigin="anonymous">
<!-- Optional theme -->
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/css/bootstrap-theme.min.css" integrity="sha384-rHyoN1iRsVXV4nD0JutlnGaslCJuC7uwjduW9SVrLvRYooPp2bWYgmgJQIXwl/Sp" crossorigin="anonymous">
<!-- Latest compiled and minified JavaScript -->
<link rel="stylesheet" href="/static/custom.css" />
</head>
<body>
<nav class="navbar navbar-default">
<div class="container-fluid">
<div class="collapse navbar-collapse">
<ul class="nav navbar-nav">
<li><a href="/">Listings</a></li>
<li><a href="/buy/fifs">FIFS</a></li>
<li><a href="/sell">Sell Domains</a></li>
<li><a href="/whois">ENS Owner</a></li>
</ul>
</div>
</div>
</nav>
<div class = "container">
<h3 class="text-center">Look up the domain owner below </h3>
<div class="col-md-offset-3 col-md-6">
<div class="input-group">
<input id="whois-input-text" type="text"
class="form-control text-right" placeholder="eth domain"
aria-describedby="basic-addon2">
<span class="input-group-addon" id="basic-addon2">.eth</span>
</div>
<div id="whois-button">
<button id="whois-real-button" type="button"
class="btn btn-primary center-block">Get Owner!</button>
</div>
</div>
<div id="owner-output">
</div>
</div>
<script src="/static/bundle.js"></script>
</body>
</html>