-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
42 lines (34 loc) · 1.44 KB
/
index.html
File metadata and controls
42 lines (34 loc) · 1.44 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="styles.css">
<title>poly engine converter</title>
</head>
<body>
<div class="page-wrapper">
<!-- Centered content -->
<div class="container">
<input type="file" id="jsonInput" accept=".json" style="display: none;">
<input type="file" id="metadataInput" accept=".json" style="display: none;">
<div class="button-row">
<div class="button-img" onclick="document.getElementById('jsonInput').click();">
<img src="images/button.png">
<span id="chartText">Add Chart</span>
</div>
<div class="button-img" onclick="document.getElementById('metadataInput').click();">
<img src="images/button.png">
<span id="metadataText">Add Metadata</span>
</div>
</div>
<div id="difficulties"></div>
<input id="button" type="submit" name="button" onclick="convert_button();" value="Convert"/>
</div>
<a href="https://scratch.mit.edu/users/realfmn" class="bottom-link">my scratch account</a>
<!-- Right-side image -->
<img src="images/wow.png" alt="" class="right-image">
</div>
</body>
<script src="index.js"></script>
</html>