forked from pointergr/api-example
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
19 lines (17 loc) · 699 Bytes
/
index.html
File metadata and controls
19 lines (17 loc) · 699 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
<html>
<head>
<title>test whois</title>
</head>
<body>
<form action="check.php" method="POST">
Domain: <input type="text" id="domain" name="domain" /><br />
gr: <input name="tlds[]" id="tld_gr" value=".gr" type="checkbox" checked="checked" /><br />
com: <input name="tlds[]" id="tld_com" value=".com" type="checkbox" checked="checked" /><br />
net: <input name="tlds[]" id="tld_net" value=".net" type="checkbox" /><br />
org: <input name="tlds[]" id="tld_org" value=".org" type="checkbox" /><br />
eu: <input name="tlds[]" id="tld_eu" value=".eu" type="checkbox" /><br />
<br />
<input type="submit" value="Search" />
</form>
</body>
</html>