-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
37 lines (37 loc) · 1.15 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<title>Information retrieval project</title>
<link rel="stylesheet" href="includes/style.css">
<script src="includes/jquery-2.1.4.min.js"></script>
<script src="includes/text.js"></script>
</head>
<body>
<input id="help" type="button" value="Help">
<div id="liteBoxDiv">
</div>
<div id="page-wrapper">
<h1>Information Retrieval Project</h1>
<div id="documentAdded"><p>   Attached documents</p> </div>
<div id="testArea">
<input type="file" id="fileInput"><br><br>
<input id="deleteDB" type="button" value="delete DB">
<input id="addOneFile" type="button" value="Add one file">
<input id="addFiles" type="button" value="Add Documents"> <br><br><br>
<input type="button" id="searchButton" value="Search"> <input id="searchLine" type="text" name="fullName" required value="" maxlength="50"><br>
</div>
<h3>Results :</h3>
</div>
<div id="secondDiv">
<h4 id="titleSecondDiv">The Full Document</h4>
<div id="allDocument">
</div>
</div>
<script>
(function(){
start();
})();
</script>
</body>
</html>