-
Notifications
You must be signed in to change notification settings - Fork 253
Expand file tree
/
Copy pathindex.html
More file actions
54 lines (41 loc) · 1.32 KB
/
index.html
File metadata and controls
54 lines (41 loc) · 1.32 KB
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1.0">
<link rel="stylesheet" href="style.css">
<link rel="shortcut icon" href="favicon.ico" type="image/x-icon">
<title>Convert to it!</title>
</head>
<body>
<input id="file-input" type="file">
<a id="commit-id" href="https://github.com/p2r3/convert"></a>
<div id="file-area">
<h2>Click to add your file</h2>
<p id="drop-hint-text">or drag and drop it here</p>
</div>
<div id="side-panel">
<button id="mode-button">Advanced mode</button>
</div>
<div id="format-containers">
<div id="from-container" class="format-container">
<h2>Convert from:</h2>
<input type="text" id="search-from" class="search" placeholder="Search">
<div id="from-list" class="format-list">
</div>
</div>
<div id="to-container" class="format-container">
<h2>Convert to:</h2>
<input type="text" id="search-to" class="search" placeholder="Search">
<div id="to-list" class="format-list">
</div>
</div>
</div>
<button id="convert-button" class="disabled">Convert</button>
<div id="popup-bg"></div>
<div id="popup">
<h2>Loading tools...</h2>
</div>
<script type="module" src="src/main.ts"></script>
</body>
</html>