-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathindex.php
executable file
·42 lines (30 loc) · 1.02 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
<?php // Example 26-4: index.php
require_once 'header.php';
include_once 'indexLocation.php';
?>
<div class="col-sm-12" >
<div class="jumbotron">
<?php
echo "<h1>Welcome to $appname!!!</h1>" ;
?>
<?php
if ($loggedin) echo " <p>$user, you are logged in.</>";
else echo ' <p>please sign up and/or log in to join in.</p>';
?>
<p><a class="btn btn-primary btn-lg" href="login.php" role="button">Connect with the People around You!!</a></p>
</div></div>
<div class="col-sm-12" >
<div id="location"></div></br></br>
<div id = "floating-panel" class= "panel panel-info">
<div class= "panel-heading">
<input id="address" type="textbox" value="Salford">
<input id="submit" type="button" value="Search">
</div>
</div>
<div id='map_canvas' style= "width:100%;height:500px"></div>
<div id='input'>
<input type="hidden" id="encodedString" name="encodedString" value="<?php echo $encodedString; ?>" />
</div></br>
</div></div><br><br>
</body>
</html>