This repository has been archived by the owner on Apr 22, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
70 lines (60 loc) · 2.53 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
<!DOCTYPE html>
<html>
<head>
<title>Project settings</title>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="css/bootstrap.min.css">
<link rel="stylesheet" href="css/style.css">
<link href="https://fonts.googleapis.com/css?family=Open+Sans" rel="stylesheet">
<template id="properties-template">
<tr>
<td><input class="property_name" "text" value=""></td>
<td><input class="property_value" "text" value=""></td>
</tr>
</template>
<template id="box-template">
<div class="box">
<div class="box-title" data-name="<name>">
<input class="comment-body" type="text" value="<name>">
<div class="checkbox">
<input type="checkbox">
</div>
</div>
<div class="box-content">
<table class="table-content">
</table>
<button class="add-row">+</button>
</div>
</div>
</template>
</head>
<body>
<div class="boxes-loading"></div>
<header>
<div class="container-fluid">
<div class="nav nav-left">
<span class="icon" id="add-box"><img src="img/icon_plus.png" alt></span>
<span class="icon icon-center" id="delete-box"><img src="img/icon_minus.png" alt></span>
</div>
<div class="nav nav-right">
<span class="icon"><img src="img/icon_info.png" alt></span>
<span class="icon"><img src="img/icon_wheel.png" alt></span>
<span class="icon"><img src="img/icon_question.png" alt></span>
<div class="search">
<span class="icon no-wheel"><img src="img/icon_search.png" alt></span>
<input type="text" id="search">
</div>
</div>
</div>
</header>
<section class="boxes">
<div class="boxes-container container-fluid" id="contentq" >
</div>
</section>
<script src="js/jquery-2.2.4.min.js"></script>
<script src="js/bootstrap.min.js"></script>
<script src="js/websockets.js"></script>
<script src="js/main.js"></script>
</body>
</html>