-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.php
164 lines (127 loc) · 5.26 KB
/
index.php
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
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<title>Hmap - Granular Health Map</title>
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta name="description" content="">
<meta name="author" content="mattia" >
<!-- Le styles -->
<link href="css/bootstrap.css" rel="stylesheet">
<link href="css/style.css" rel="stylesheet">
<link href="css/bootstrap-responsive.css" rel="stylesheet">
<link href="css/legend.css" rel="stylesheet">
<!-- Le HTML5 shim, for IE6-8 support of HTML5 elements -->
<!--[if lt IE 9]>
<script src="http://html5shim.googlecode.com/svn/trunk/html5.js"></script>
<![endif]-->
<!-- Le fav and touch icons -->
<link rel="shortcut icon" href="ico/favicon.ico">
<link rel="apple-touch-icon-precomposed" sizes="144x144" href="ico/apple-touch-icon-144-precomposed.png">
<link rel="apple-touch-icon-precomposed" sizes="114x114" href="ico/apple-touch-icon-114-precomposed.png">
<link rel="apple-touch-icon-precomposed" sizes="72x72" href="ico/apple-touch-icon-72-precomposed.png">
<link rel="apple-touch-icon-precomposed" href="ico/apple-touch-icon-57-precomposed.png">
<script src="js/jquery.js"></script>
<script src="js/code.js"></script>
<link href='http://fonts.googleapis.com/css?family=Cabin' rel='stylesheet' type='text/css'>
<link href='http://fonts.googleapis.com/css?family=Raleway:200' rel='stylesheet' type='text/css'>
</head>
<body>
<div class="container">
<!-- Modal -->
<div id="myModal" class="modal hide fade" tabindex="-1" role="dialog" aria-labelledby="myModalLabel" aria-hidden="true">
<div class="modal-header">
<button type="button" class="close" data-dismiss="modal" aria-hidden="true">×</button>
<h3 id="modal-titolo">Modal header</h3>
</div>
<div class="modal-body">
<div class="row">
<div class="sx">
<img src="img/hospital.png" title="" alt="">
</div>
<div>
<table border="0" id="modal-item">
</table>
</div>
</div>
</div>
<div class="modal-footer">
<button class="btn" data-dismiss="modal" aria-hidden="true">Close</button>
</div>
</div>
<div class="row" id="menu">
<div class="span3">
<center>
<!-- <span class="aitch">H</span>
<span class="logo">map</span> -->
<img src="img/eli.png">
</center>
</div>
<div class="span9">
<ul>
<li><a href="#" id="homeMenu"> <img src="img/1354366054_pushpin-1.png"> home</a></li>
<li><a href="join.php"> <img src="img/1354396892_comment.png"> join with us</a></li>
<li><a href="#" id="searchMenu"> <img src="img/1354397038_magnifying-glass.png"> search</a></li>
</ul>
</div>
</div>
<div class="row" id="main">
<div class="span4 hide" id="search">
<span class="title">Search</span> <br><br>
<span id="search-text">
Here you can find what you want.. you can find what you want
you can find what you want.
</span>
<div id="search-form">
<label>Nation</label>
<input type="text" id="nation" name="nation"/>
<label>City</label>
<input type="text" id="city" name="city"/>
<br/><br/>
<a class="btn btn-primary" id="do-find">find</a>
<a class="btn" id="do-show-all">show all</a>
</div>
</div>
<div class="span5" id="presentation">
<span id="pres-text">
On this page you can search for the nearest
hospital to you and have addictional
informations about the four different levels of
health system in your zone. We developed
this web application even to allow you contri
bute to define as best as possible our health s
ystem.
</span>
<center>
<img src="img/ambulance.png" title="" alt="">
</center>
<center>
<span class="title">Welcome to Hmap!</span>
</center>
<center>
<a class="btn btn-warning" href="join.php">Collaborate</a>
</center>
</div>
<div class="span6" id="maps">
<div id="demoMap"></div>
<script src="http://www.openlayers.org/api/OpenLayers.js"></script>
<div id="legend">
<p>Map's legend:</p>
<ul>
<li><img src="img/a_h.png"/> Advanced Hospital</li>
<li><img src="img/b_h.png"/> Basic Hospital</li>
<li><img src="img/h_p.png"/> Health Post</li>
<li><img src="img/h_h.png"/> Health Hut</li>
</ul>
</div>
</div>
</div>
</div> <!-- /container -->
<!-- Le javascript
================================================== -->
<!-- Placed at the end of the document so the pages load faster -->
<script src="js/bootstrap.js"></script>
<script src="js/jquery-cookie.js"></script>
<script src="js/ui.js"></script>
</body>
</html>