-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathindex.php
More file actions
33 lines (29 loc) · 713 Bytes
/
index.php
File metadata and controls
33 lines (29 loc) · 713 Bytes
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
<style type="text/css">
.pga { width: 100%; margin:0;}
/*.img img{margin:0;}*/
body {background-color: lightgrey;}
.image li{display:inline;
padding-right:20px; }
</style>
<body style=" margin: 0px;">
<div class = "pga">
<?php
include 'init.php';
include 'template/header.php';
if(logged_in())
{
echo 'Welcome , you can now start to <a href="create_album.php">create albums</a> and <a href="upload_image.php">upload images</a>';
}
else
{
//echo '<img src="images/landing.png" alt="Register a free acount today" />';
}
?>
<!div class="img" >
<!img src ="images/couple.jpg" style="width:97.5%;">
<!/div>
<?php
include 'template/footer.php';
?>
</div>
</body>