This repository has been archived by the owner on May 16, 2018. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
64 lines (57 loc) · 1.89 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>G3STOR3</title>
<link rel="stylesheet" href="app/upload.css">
<link rel="stylesheet" href="node_modules/dialog-polyfill/dialog-polyfill.css">
</head>
<body>
<!-- Header -->
<div class="header">
<h1 class="main-header" style="display: flex; justify-content: center; align-items: center"><img src="logo.png" width="90"> G3STOR3</h1>
</div>
<!-- Form -->
<div class="container">
<div class="form">
<form id="encrypt-form">
<h2>G3STOR3</h2>
<input type="hidden" id="MAX_FILE_SIZE" name="MAX_FILE_SIZE" value="300000" />
<div>
<label id="manual-text" for="fileselect">Get those files:</label>
<input class="file-select" type="file" id="fileselect" name="files" multiple>
<div id="filedrag">Drop dem files a here</div>
</div>
<div id="submitbutton">
<button class="clicky-button" type="submit">Upload dem files?</button>
</div>
</form>
</div>
<!-- messages -->
<div id="messages">
<h2>The List of the Files</h2>
<ul id="enc-files-list"></ul>
<form id="decrypt-form">
<input type="file" name="files" multiple><button type="submit">Upload Encrypted Files</button>
</div>
</div>
<!-- Footer -->
<div class="footer">
<p>2016 FYRE UNITED DEVELOPERS, Licensed under GPL V3</p>
<p><a href="README.md">Credits</a></p>
</div>
<dialog id="p5">
<p>
First, press SPACE to take a reference frame. Then put your hand in either
a vertical or horizontal position in the upper right corner of your camera's
viewpoint. Press SPACE again to lock in that direction as one of the steps
to encrypt/decrypt your file.
</p>
<p id="p5__state"></p>
<p id="p5__current-combo">Current combination: [none]</p>
<div id="p5__holder"></div>
</dialog>
<script src="node_modules/dialog-polyfill/dialog-polyfill.js"></script>
<script src="dist/app.bundle.js"></script>
</body>
</html>