-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
95 lines (91 loc) · 4.05 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1">
<!-- The above 3 meta tags *must* come first in the head; any other head content must come *after* these tags -->
<title>Bootstrap tree</title>
<!-- <link href="css/style.css" rel="stylesheet"> -->
<!-- Bootstrap -->
<link href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/css/bootstrap.min.css" rel="stylesheet">
<link href="css/style.css" rel="stylesheet">
<link href="css/bootstrap-treeview.min.css" rel="stylesheet">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/bootstrap-table/1.10.1/bootstrap-table.min.css">
</head>
<body>
<div id="fond"></div>
<div id="modal" class="popup"></div>
<div id="fond3"></div>
<div id="modal3" class="popup3"></div>
<div id="fond4"></div>
<div id="modal4" class="popup4"></div>
<div class="header">
<center>
<div class="">
<img class="imgBan" id="imgBan1" src="img/snt.png" alt="SNT logo">
<img class="imgBan" id="imgBan2" src="img/UniversityLu.png" alt="University Luxembour logo">
<h3 >Welcome to my tool</h3>
</div>
</center>
</div>
<div class="nav">
<ul>
<li><a href="index.html"><span>Step 1</span></a></li>
<li><a id='step2'><span>Step 2</span></a></li>
<li><a href="view/step3.html"><span>Step 3</span></a></li>
</ul>
</div>
<div id="treeObj" class="block">
<div class="title">
<span class="glyphicon glyphicon-list glificon" aria-hidden="true"></span>
<h4 class='name' >Object Tree</h4>
<small>Select nodes that you want in the request</small>
</div>
<div class="button">
<button class="btn custom2 btn-default" id="del">Delete</button><button class="btn custom2 btn-default" id="edit">Edit</button><button class="btn custom2 btn-default" id="convert">O-DF<span class="glyphicon glyphicon-download-alt" aria-hidden="true"></span></button>
</div>
<div class="tree" id='tree'></div>
</div>
<div id="term" class="block">
<div class="title">
<img src="img/LOV.png" id="logo" alt="LOV logo">
<h4 class='name' id='termText'>Add element to selected Object</h4>
<small>Search for term and add them to the OD-F tree</small>
</div>
<div class="content">
<div id="contentTerm">
<div class="search">
<label>Search term</label>
<div class="form-group">
<input class="form-control" id="inputTerm">
<button id="submitTerm" class="btn btn-default">Search</button>
</div>
</div>
<div class="term">
<table id="table" class="table table-striped table-hover">
<thead>
<tr class="clickable-row">
<th data-field="prefixedName">Term</th>
<th data-field="score">Score</th>
</tr>
</thead>
</table>
</div>
</div>
<div class="tree" id="subTree"></div>
</div>
</div>
<div class="but">
<button class="btn btn-default" id="addTerm"><span class="glyphicon glyphicon-arrow-left" aria-hidden="true"></span>Add term</button>
<button class="btn btn-default" id="customTerm"><span class="glyphicon glyphicon-arrow-left" aria-hidden="true"></span>Add custom term</button>
</div>
<!-- jQuery (necessary for Bootstrap's JavaScript plugins) -->
<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.12.4/jquery.min.js"></script>
<!-- Include all compiled plugins (below), or include individual files as needed -->
<script src="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/js/bootstrap.min.js"></script>
<script src="js/bootstrap-treeview.min.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/bootstrap-table/1.10.1/bootstrap-table.min.js"></script>
<script src="js/app.js"></script>
</body>
</html>