-
Notifications
You must be signed in to change notification settings - Fork 1
/
index.html
44 lines (44 loc) · 1.55 KB
/
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<script src="finder.js"></script>
<link
href="https://cdn.jsdelivr.net/npm/[email protected]/dist/css/bootstrap.min.css"
rel="stylesheet"
integrity="sha384-0evHe/X+R7YkIZDRvuzKMRqM+OrBnVFBL6DOitfPri4tjfHxaWutUpFmBp4vmVor"
crossorigin="anonymous"
/>
<title>V4nguard Key Extractor</title>
</head>
<style>
html,
body {
background-color: #001;
height: 100%;
}
</style>
<body>
<div class="container-fluid" style="padding-top: 16rem">
<div class="d-flex justify-content-center" style="color: #fff">
<div
id="drop_zone"
ondrop="dropHandler(event);"
ondragover="dragOverHandler(event);"
class="d-flex justify-content-center align-items-center rounded-5 mb-3"
style="width: 32rem; height: 16rem; border: 0.5rem dashed #fff;" >
<b>Drag file here</b>
</div>
</div>
<div class="d-flex justify-content-center mt-3">
<div class="alert alert-primary align-middle d-flex align-items-center" id="result" role="alert" style="max-width: 64rem; overflow-wrap: break-word;">
<div class="spinner-border text-dark me-3" role="status" id="result-spinner">
<span class="visually-hidden">Loading...</span>
</div>
<span id="result-text">Waiting for file...</span>
</div>
</div>
</body>
</html>