-
Notifications
You must be signed in to change notification settings - Fork 1
/
old_index.html
92 lines (86 loc) · 4.8 KB
/
old_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
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>Bulkvaluator - The Bulk Domain Name Value Appraisal Tool</title>
<link rel='stylesheet' href='https://use.fontawesome.com/releases/v5.5.0/css/all.css'>
<link rel='stylesheet' href='https://stackpath.bootstrapcdn.com/bootstrap/4.1.3/css/bootstrap.min.css'>
<link rel='stylesheet' href='https://maxcdn.bootstrapcdn.com/bootstrap/4.1.1/css/bootstrap.min.css'><link rel="stylesheet" href="./style.css">
<link rel="apple-touch-icon" sizes="180x180" href="./apple-touch-icon.png">
<link rel="icon" type="image/png" sizes="32x32" href="./favicon-32x32.png">
<link rel="icon" type="image/png" sizes="16x16" href="./favicon-16x16.png">
<link rel="manifest" href="./site.webmanifest">
</head>
<body>
<!-- partial:index.partial.html -->
<!-- <nav class="navbar navbar-expand-md fixed-top navbar-dark bg-dark" style="padding-top: 5px">
<a class="navbar-brand text-muted" href="/"><i class="icon fa fa-hand-holding-usd fa-2x"></i></span><sup class="text-muted"> BulkValue <b>(Powered by SaveBreach.com)</b></sup></a>
<button class="navbar-toggler" type="button" data-toggle="collapse" data-target="#navbarNavAltMarkup" aria-controls="navbarNavAltMarkup" aria-expanded="false" aria-label="Toggle navigation">
<span class="navbar-toggler-icon"></span>
</button>
<div class="collapse navbar-collapse" id="navbarNavAltMarkup">
<div class="navbar-nav">
<a class="nav-item nav-link active" href="#">Home <span class="sr-only">(current)</span></a>
<a class="nav-item nav-link" href="#dom">Bulk Valuator</a>
<a class="nav-item nav-link" href="#bulk">Results</a>
<a class="nav-item nav-link" href="#csv">Import CSV</a>
</div>
</div>
</nav> <br> <br> !-->
<div id="header">
<i class="icon fa fa-hand-holding-usd fa-8x"></i>
<sup> <span id="logo">BulkValue</span></sup>
<ul id="menu">
<li><a href="#"><span>Home</span></a></li>
<li><a href="#dom"><span>BulkTool</span></a></li>
<li><a href="#bulk"><span>Results</span></a></li>
<li><a href="#csv"><span>CSV Export</span></a></li>
<li><a href="http://savebreach.com"><span>SaveBreach</span></a></li>
</ul>
</div>
<br>
<br>
<br>
<br>
<img src="https://hitcounter.pythonanywhere.com/count/tag.svg?url=https%3A%2F%2Fhackerpain.github.io%2Fbulkvaluator%2F" alt="Hits">
<a href="https://twitter.com/share?ref_src=twsrc%5Etfw" class="twitter-share-button" data-show-count="false">Tweet about BulkValue</a> <a href="https://twitter.com/SaveBreach?ref_src=twsrc%5Etfw" class="twitter-follow-button" data-show-count="false">Follow @SaveBreach</a> <br><br>
<div class="container h-100">
<div class="d-flex justify-content-center h-1000">
<div class="textbox">
<textarea autofocus class="text_input" type="text" name="domains" placeholder="Enter domain names..." id="dom"></textarea>
<div class="checkbox">
<label><input type="checkbox" value="" id="csvCheck"> <i class="fas fa-file-csv fa-2x"></i><span> Paste in CSV format </span></label>
<label style="margin-left: 2em"><input type="checkbox" value="" id="compare"> <span><i class="fa fa-search-plus"></i> Show Comparable Sales </span></label>
</div>
<button type="button" class="btn btn-outline-primary btn-lg btn-block" id="domValue">Find value <i class="fa fa-hand-holding-usd"></i></button>
</div>
</div> <br>
<hr>
<h2 class="display-2"> Bulk Appraisal </h2>
<small class="display-4"> The results will be displayed in the table below. </small> <br> <br>
<div class="alert alert-danger alert-dismissable"> <button class="close" data-dismiss="alert" aria-label="close">×</button>
<i class="fas fa-exclamation-triangle"></i> Fetching the results may take time, so give it a while for processing. Please be patient meanwhile, and <b> don't close the window as you will lose the results by doing so! </b>
</div>
<button type="button" id="csv" class="btn btn-success pull-right"><i class="fa fa-download"></i> Export CSV</button>
<br> <br>
<table class="table table-hover table-dark hide" id="bulk">
<thead>
<tr>
<th>Domain</th>
<th>GoDaddy Value</th>
<th id="remove">Comparable Sales</th>
</tr>
</thead>
</table>
</div>
<div class="footer">
<small>Copyright © <a class="text-light" href="http://savebreach.com">SaveBreach.com</a></small>
</div>
<!-- partial -->
<script src='https://maxcdn.bootstrapcdn.com/bootstrap/4.1.1/js/bootstrap.min.js'></script>
<script src='https://cdnjs.cloudflare.com/ajax/libs/jquery/3.5.1/jquery.min.js'></script>
<script src='https://cdnjs.cloudflare.com/ajax/libs/bootstrap-material-design/4.0.2/bootstrap-material-design.umd.min.js'></script>
<script src='https://platform.twitter.com/widgets.js'></script><script src="./script.js"></script>
</body>
</html>