-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.php
More file actions
38 lines (35 loc) · 903 Bytes
/
index.php
File metadata and controls
38 lines (35 loc) · 903 Bytes
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
<html>
<head>
<link rel="stylesheet" href="css/style.css"/>
<meta charset="utf-8">
<title>Network Builder</title>
</head>
<body>
<div id="editor">
<canvas id="draw-place">
</canvas>
<div id="edit-place">
</div>
<div id="menu">
<div id="option-menu">
<div id="options-file"> <!-- new, open, save -->
</div>
<div id="options-objects"> <!-- devices, cables -->
</div>
<div id="options-program"> <!-- settings, about, help -->
</div>
</div>
<div id="object-menu"> <!-- objects -->
</div>
<div id="submenus">
</div>
</div>
</div>
<div id="footer">
<div class="footer-left">Objects: <span id="fv-objcount">0</span></div>
<div class="footer-right">Network Builder v1.0 (beta) | Sppmacd (c) 2020</div>
</div>
<script src="js/main.js"></script>
<script src="js/ui.js"></script>
</body>
</html>