-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathuserhome.php
More file actions
52 lines (45 loc) · 1.24 KB
/
userhome.php
File metadata and controls
52 lines (45 loc) · 1.24 KB
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Home</title>
<link href="css/bootstrap.css" rel="stylesheet">
<script src="js/jquery.min.js"></script>
<script src="js/bootstrap.min.js"></script>
<script src="js/jquery-ui.js"></script>
<link rel="stylesheet" href="css/jquery-ui.css">
<script src="src/tag-it.min.js"></script>
<!-- <script src="src/jquery.tagsinput.min.js"></script>-->
<!-- <link href="src/jquery.tagsinput.min.css" rel="stylesheet">-->
<link href="src/jquery.tagit.css" rel="stylesheet">
</head>
<body>
<?php include "header_user.php" ?>
<div class="container">
<h2>Search Symptoms</h2>
<div class="form-group-lg">
<div class="col-sm-1"></div>
<div class="col-sm-8">
<input id="txtsrch" name="txtsrch" placeholder="Start typing to search symptoms" class="form-control"/>
</div>
<div class="col-sm-2">
<button class="btn btn-primary btn-lg" onclick="searchareas()">
<span class=" glyphicon glyphicon-search"></span> Search
</button>
</div>
<div class="col-sm-1"></div>
</div>
<div class="row">
<div class="col-sm-12">
<div id="symptoms"></div>
</div>
</div>
<div class="row">
<div class="col-sm-12">
<div id="txtHint"></div>
</div>
</div>
<br><br>
</div>
</body>
</html>