38 lines
1.4 KiB
HTML
38 lines
1.4 KiB
HTML
<!DOCTYPE html>
|
|
<html>
|
|
<head>
|
|
<title>Website-Finder</title>
|
|
<meta charset="utf-8">
|
|
<link rel="stylesheet" type="text/css" href="./index.css">
|
|
<script type="text/javascript" src="./index.js"></script>
|
|
</head>
|
|
<body>
|
|
<div id="rest">
|
|
<h1>WEBSITE-FINDER</h1>
|
|
<form>
|
|
<input type="button" id="btn" onclick="findWebsites()" value="Find websites!">
|
|
<label>Number of URLs to check:</label>
|
|
<input type="number" id="times" value="2000">
|
|
<label>Application protocols (separated with ", "):</label>
|
|
Please note that http requests (not https) will not work if the page is loaded on a HTTPS website, <b>putting http in that field is useless if you're using GitHub Pages</b>
|
|
<input type="text" id="protocols" value="https">
|
|
<label>Domains to check (separated with ", "):</label>
|
|
<input type="text" id="domains" value="com, org, net, tk, cn, de, ru, uk, nl, ca, au, in, ir, tv, live, gov, edu">
|
|
<label>Chances out of 100 for a URL to have two domains:</label>
|
|
<input type="number" id="second" value="0">
|
|
<label>Minimum URL length (excluding domain and protocol):</label>
|
|
<input type="number" id="min" value="2">
|
|
<label>Maximum URL length (excluding domain and protocol):</label>
|
|
<input type="number" id="max" value="15">
|
|
</form>
|
|
<p>STATUS: STOPPED</p>
|
|
<p>COUNT:</p>
|
|
<p>CHECKING:</p>
|
|
</div>
|
|
<div id="list">
|
|
<ul>
|
|
|
|
</ul>
|
|
</div>
|
|
</body>
|
|
</html>
|