-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathindex.html
More file actions
27 lines (26 loc) · 1.02 KB
/
Copy pathindex.html
File metadata and controls
27 lines (26 loc) · 1.02 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
<!-- HTML File for PicoWQuack -->
<!-- Author - WireBits -->
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=0.8, minimal-ui">
<link rel="stylesheet" href="styles.css">
<title>PicoWQuack</title>
</head>
<body>
<div class="container">
<div id="title">PicoWQuack</div>
<div id="filenameDisplay" class="fileTitle">No Payload File Uploaded!</div>
<textarea id="content" class="textarea" placeholder="Enter Mnemonics"></textarea>
<div class="buttons">
<button id="run" onclick="main()">Run</button>
<button id="upload" onclick="triggerFileInput()">Upload</button>
<input type="file" id="fileInput" onchange="handleFileSelect(event)">
<button id="save" onclick="saveFile()">Save</button>
<button id="clear" onclick="clearTextArea()">Clear</button>
</div>
</div>
<script src="script.js"></script>
</body>
</html>