-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathindex.html
70 lines (57 loc) · 1.34 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
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>Siralim Ultimate Save Reader/Writer</title>
<meta name="description" content="Siralim Ultimate save file reader and writer">
<meta name="author" content="Alex Gurganus">
<meta property="og:title" content="Siralim Ultimate Save Reader/Writer">
<meta property="og:description" content="Decrypt and Encrypt Siralim Ultimate save files">
<base href="./">
</head>
<style>
button {
padding: 10px 10px;
}
input {
font-size: 30px;
}
label {
display: block;
}
h1 {
text-align: center;
}
body {
color: white;
background-color: #2C2F33;
font-size: 250%;
}
section {
display: flex;
justify-content: center;
}
label {
margin-right: 8px;
}
</style>
<body>
<h1>Siralim Ultimate Save Decrypt/Encrypt</h1>
<section>
<div>
<label for="decrypt">Choose .sav file to decrypt</label>
<input type="file"
id="decrypt" name="decrypt-save"
>
</div>
<div>
<label for="encrypt">Reencrypt decoded save file</label>
<input type="file"
id="encrypt" name="encrypt-save"
>
</div>
<script src="index.js"></script>
</section>
</body>
</html>