-
Notifications
You must be signed in to change notification settings - Fork 8
/
index.html
86 lines (74 loc) · 2.54 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
85
86
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8" />
<!-- Including libs used by the page -->
<script src="assets/js/lib/jquery-3.1.0.min.js"></script>
<script src="assets/js/lib/jszip-3.1.2.min.js"></script>
<script src="assets/js/lib/FileSaver-1.3.2.min.js"></script>
<!-- LocaleKeyboard.js -->
<script src="https://nurrl.github.io/LocaleKeyboard.js/LocaleKeyboard.js"></script>
<!-- Page style -->
<link rel="stylesheet" type="text/css" href="assets/css/style.css" />
<!-- Fontawesome -->
<script src="https://use.fontawesome.com/3db0bc0c36.js"></script>
<!-- Favicon -->
<link rel="icon" type="image/png" href="favicon.png" />
<title>Dckuino.js</title>
</head>
<body>
<!-- The popup -->
<div id="dl-popup" class="modal">
<!-- Modal content -->
<div class="modal-content">
<span class="close">x</span>
Select a locale :
<select id="locale-select"></select>
<input id="dl-filename" type="text"></input>
<button id="start-dl">Start Download !</button>
</div>
</div>
<!-- Menu -->
<menu>
<a class="left compile-but hoverable">
<i class="fa fa-play"></i>
Compile
</a>
<a class="left dl-but hoverable">
<span class="fa-stack fa">
<i class="fa fa-download fa-stack-1x"></i>
<i class="fa fa-ban text-danger fa-stack-1x" style="color: #DE1B1B;"></i>
</span>
Download sketch !
</a>
<!-- Board selection -->
<a class="left">
<span class="fa-stack fa">
<i class="fa fa-gear fa-stack-1x"></i>
</span>
Board
<select id="board-select" class="styled-select">
<option>Arduino</option>
<option>Digispark</option>
</select>
</a>
<a class="right hoverable" href="https://github.com/Nurrl/Dckuino.js" target="_blank">
<i class="fa fa-github-alt"></i>
See this on GitHub <3 !
</a>
<a class="right hoverable" href="https://github.com/hak5darren/USB-Rubber-Ducky/wiki/Payloads" target="_blank">
<i class="fa fa-code"></i>
Hak5 Payloads
</a>
</menu>
<!-- I/O Dckuino -->
<div class="inout-wrapper">
<textarea class="inout duckyscript"></textarea>
<textarea class="inout arduino" readonly></textarea>
</div>
<textarea class="console" readonly></textarea>
<!-- Handmade js <3 -->
<script src="Dckuino.js"></script>
<script src="assets/js/main.js"></script>
</body>
</html>