forked from wasdwasd0105/SuperWiFiDuck
-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
84 lines (80 loc) · 4.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
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
<!--
This software is licensed under the MIT License. See the license file for details.
Source: https://github.com/spacehuhntech/WiFiDuck
-->
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=0.8, minimal-ui">
<meta name="theme-color" content="#36393E">
<meta name="description" content="Pixel WiFi Duck">
<title>Pixel WiFi Duck</title>
<link rel="stylesheet" type="text/css" href="style.css">
<script src="script.js"></script>
<script src="index.js"></script>
</head>
<body>
<nav>
<ul class="menu">
<li><a href="index.html"><img src="wifi.svg" alt="WiFi Icon" width="20" height="20" style="vertical-align: -3.5px;"> WiFi Duck</a></li>
<li><a href="settings.html"><img src="settings.svg" alt="Settings Icon" width="20" height="20" style="vertical-align: -3.5px;"> Settings</a></li>
<li><a href="terminal.html"><img src="terminal.svg" alt="Terminal Icon" width="20" height="20" style="vertical-align: -3.5px;"> Terminal</a></li>
<li><a href="scripting.html"><img src="scripting.svg" alt="Scripting Icon" width="20" height="20" style="vertical-align: -3.5px;"> Scripting</a></li>
<li><a href="credits.html"><img src="credits.svg" alt="About Icon" width="20" height="20" style="vertical-align: -3.5px;"> About</a></li>
</ul>
</nav>
<div id="status"></div>
<main>
<section>
<h1>Status</h1>
<div class="row">
<p><b>Storage: </b><span id="freeMemory">-</span></p>
<button class="danger" id="format">format</button>
<button class="warn" id="stop">stop</button>
<button class="white" id="reconnect">reconnect</button>
</div>
</section>
<section>
<h1>Scripts <a class="reload" id="scriptsReload">↻</a></h1>
<table class="table" id="scriptTable"></table>
<div class="row">
<input placeholder="Filename /<name>" type="text" class="smooth" value="/" id="newFile"/>
<button class="success" onclick="create(get_new_filename())">create</button>
</div>
</section>
<section>
<h1>Editor <a class="reload" id="editorReload">↻</a></h1>
<div class="row">
<input placeholder="Filename /<name>" type="text" class="smooth" value="/" id="editorFile">
<button class="danger" id="editorDelete">delete</button>
<button class="primary" id="editorDownload">download</button>
<button class="primary" id="editorAutorun">Enable autorun</button>
</div>
<div class="row">
<textarea class="smooth" id="editor"></textarea>
</div>
<div class="row">
<div class="debugger">
Output: <span id="editorinfo">saved</span>
</div>
</div>
<div class="row">
<div id="editor-primary-buttons">
<button class="success" id="editorSave">save</button>
<button class="warn" id="editorRun">run</button>
<button class="danger" id="editorStop">stop</button>
</div>
</div>
</section>
<section>
</main>
<footer>
<a href="https://github.com/wasdwasd0105/SuperWiFiDuck" target="_blank">Source</a>
<br><br>
<span id="version"></span><br>
Copyright (c) 2021 Spacehuhn Technologies<br>
<a href="https://spacehuhn.com" target="_blank">spacehuhn.com</a>
</footer>
</body>
</html>