forked from psypanda/hashID
-
Notifications
You must be signed in to change notification settings - Fork 1
/
index.html
30 lines (30 loc) · 1014 Bytes
/
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
---
layout: default
subtitle: Identify hashes in the browser
---
<div class="container">
<p>
Submit a line separated list of hash(es) to identify.
</p>
</div>
<div class="container mb-15">
<div class="input-group">
<textarea class="form-control" rows="7" id="hashes" spellcheck="false"
placeholder="d41d8cd98f00b204e9800998ecf8427e"></textarea>
<button id="submit" class="btn btn-primary" onclick="hashID.submit()" disabled>Submit</button>
</div>
</div>
<div class="container mb-15">
<h4>Results</h4>
<div id="loading" style="display: none !important;">
<div class="spinner">
<div class="cube1"></div>
<div class="cube2"></div>
</div>
</div>
<div id="results"></div>
<div id="nothing">You haven't submitted anything yet</div>
<!-- <button id="share" class="btn btn-light" onclick="hashID.copyShareURL()" disabled>-->
<!-- Copy shareable-link to clipboard-->
<!-- </button>-->
</div>