-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
67 lines (64 loc) · 3.03 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
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8" />
<title>File converter</title>
<link rel="stylesheet" href="index.css" />
<link href="./fontawesome/css/all.css" rel="stylesheet">
<script defer src="components/ConvertScreen.js"></script>
<script defer src="./components/ConvertGroup.js"></script>
<script defer src="./components/FileType.js"></script>
<script defer src="components/file.js"></script>
</head>
<body>
<div class="titlebar drag">
<span class="settingsButton nodrag" id="SettingsButton" type="text">
<i id="SettingsIcon" class="SettingsIcon fa fa-cog"></i>
</span>
<span class="settingsButton nodrag hidden" id="UpdateButton" onclick="UpdateApp()" type="text"
style="margin-left: 30px; color: rgb(65, 197, 133);" title="Update available">
<img src="./images/downloadicon.svg"
style="filter: invert(92%) sepia(19%) saturate(1487%) hue-rotate(77deg) brightness(82%) contrast(85%); height: 23px;">
</span>
<div id="UpdateLoad" class="hidden">
<span class="UpdateSpinner nodrag" type="text" style="margin-left: 30px; color: rgb(65, 197, 133);"
title="Downloading Update">
<i id="UpdateLoadIcon" class="UpdateLoadIcon fa fa-spinner fa-spin"></i>
</span>
<label class="UpdateLabel">Downloading Update</label>
</div>
<span class="settingsButton nodrag hidden" id="RestartAndUpdateButton" onclick="RestartAndUpdate()" type="text"
style="margin-left: 30px; color: rgb(65, 197, 133);" title="Restart and Update">
<i class="fa fa-rotate-left"></i>
</span>
<span class="closeWindow nodrag" id="CloseButton" type="text"></span>
<span class="minimizeWindow nodrag" id="MinimizeButton" type="text"></span>
</div>
<div class="flexbox">
<div class="leftside flexbox-item">
<div id="drop-area" class="drop-area">
<p class="mb-3 text">Drag and drop to convert.</p>
<label class="button custom-file-upload">
<input tabindex="1" type="file" id="fileElem" onchange="UploadFiles(this.files); this.value= null"
multiple>
Select some files
</label>
</div>
<label class="button custom-file-upload">
<input tabindex="2" id="directory-upload" type="file"
onchange="UploadFiles(this.files); this.value=null" name="resume" webkitdirectory directory
multiple />
<i class="fa-solid fa-arrow-up-from-bracket"></i>
Or select a folder
</label>
</div>
<div id="drop-area" class="main flexbox-item">
<convert-screen class="FileListContainer" id="FileListContainer">
<!-- This is where the all the files go in. -->
</convert-screen>
</div>
</div>
</body>
<script src="convert.js"></script>
<script src="index.js"></script>
</html>