-
Notifications
You must be signed in to change notification settings - Fork 5
/
index.html
99 lines (73 loc) · 3.3 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
87
88
89
90
91
92
93
94
95
96
97
98
<!DOCTYPE html>
<html>
<head>
<title>Candle manager</title>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width,initial-scale=1">
<meta name="description" content="Candle manager allows you to easily upload code to Arduino devices">
<meta name="author" content="CreateCandle">
<link rel="stylesheet" href="stylesheet.css" type="text/css">
<link rel="stylesheet" href="{{ url_for('static', filename='css/main.css') }}">
<link rel="stylesheet" href="{{ url_for('static', filename='css/wizard.css') }}">
</head>
<body>
<div id="container">
<div id="centered">
<div id="logo-container">
<img id="logo" src="{{ url_for('static', filename='images/candle_logo_simple.png') }}" />
</div>
<div id="wizard-container">
<ol class="wizard numeric">
<li class="done">
<span> 1 </span>
<div>Plug in USB</div>
</li>
<li class="active">
<span> 2 </span>
<div>Select type</div>
</li>
<li>
<span> 3 </span>
<div>Change settings</div>
</li>
<li>
<span> 4 </span>
<div>Upload to Arduino</div>
</li>
<li>
<span> 5 </span>
<div>Check</div>
</li>
<li>
<span> 5 </span>
<div>Done</div>
</li>
</ol>
</div>
<div id="content">
<div id="step1" class="active">
<h2>Plug in USB</h2>
</div>
<div id="step2">
<h2>Select type</h2>
</div>
<div id="step3">
<h2>Change settings</h2>
</div>
<div id="step4">
<h2>Upload to Arduino</h2>
</div>
<div id="step5">
<h2>Check</h2>
</div>
<div id="step6">
<h2>Done</h2>
</div>
</div>
</div>
</div>
<script src="{{ url_for('static', filename='js/jquery.min.js') }}" type="text/javascript"></script>
<script src="{{ url_for('static', filename='js/wizard.js') }}" type="text/javascript"></script>
<script src="{{ url_for('static', filename='js/main.js') }}" type="text/javascript"></script>
</body>
</html>