-
Notifications
You must be signed in to change notification settings - Fork 1
/
index.html
49 lines (44 loc) · 1.85 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
45
46
47
48
49
<!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">
<input type="radio" id="platformPS3" name="platform" value="ps3" checked />
<label for="platformPS3">Playstation 3</label>
<input type="radio" id="platformX360" name="platform" value="x360" style="margin-left: 1rem" />
<label for="platformX360">Xbox 360</label>
</div>
<div class="d-flex justify-content-center" style="color: #fff; padding-top: 1rem">
<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>