-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathavailability.html
48 lines (47 loc) · 3.07 KB
/
availability.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
<html>
<head>
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.3.1/jquery.min.js"></script>
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/css/bootstrap.min.css" integrity="sha384-BVYiiSIFeK1dGmJRAkycuHAHRg32OmUcww7on3RYdg4Va+PmSTsz/K68vbdEjh4u" crossorigin="anonymous">
<script src="/src/resources/js/AvailabilityCheck.js"></script>
</head>
<body>
<div class="container">
<h1>Availability Check</h1>
<div class="form-group">
<label for="name">Search for domain</label>
<input type="test" name="name" id="names-input" class="form-control" placeholder="name" aria-describedby="helpId" required="required" value="manuel, oscar">
<small id="helpId" class="text-muted">Search for this name. Use "," to separate multiple names. Enter the name(s) with our with domain extension.</small>
</div>
<div class="form-group">
<label for="name">TLDs</label>
<div class="form-check form-check-inline">
<label class="form-check-label">
<input class="form-check-input" type="checkbox" name="tld" id="tld-com" checked="checked" value="com"> .com
</label>
<label class="form-check-label">
<input class="form-check-input" type="checkbox" name="tld" id="tld-net" checked="checked" value="net"> .net
</label>
<label class="form-check-label">
<input class="form-check-input" type="checkbox" name="tld" id="tld-org" checked="checked" value="org"> .org
</label>
<label class="form-check-label">
<input class="form-check-input" type="checkbox" name="tld" id="tld-info" checked="checked" value="info"> .info
</label>
<label class="form-check-label">
<input class="form-check-input" type="checkbox" name="tld" id="tld-biz" checked="checked" value="biz"> .biz
</label>
<label class="form-check-label">
<input class="form-check-input" type="checkbox" name="tld" id="tld-de" checked="checked" value="de"> .de
</label>
</div>
</div>
<div class="form-group">
<button type="button" name="search-domain" id="search-domain" class="btn btn-primary" btn-lg btn-block">Search</button>
</div>
<div class="progress">
<div class="progress-bar progress-bar-striped animated" id="availability-progress" role="progressbar" style="width: 0%" aria-valuenow="10" aria-valuemin="0" aria-valuemax="100"></div>
</div>
<div id="availabilityResult"></div>
</div>
</body>
</html>