-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.php
More file actions
32 lines (24 loc) · 795 Bytes
/
index.php
File metadata and controls
32 lines (24 loc) · 795 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
<?php
include_once('header.php');
?>
<body>
<div class="container-fluid">
<div class="row">
<?php
if (isset($_SESSION['userId'])) {
echo '<p class="login-status">You are logged in!</p>';
}
else {
echo '<p class="login-status">You are logged out!</p>';
}
?>
<p align="center">
<img class="img-responsive img-rounded"
src="Img/Melvin.png"></p>
</div>
<div class="row">
<p><h1><strong>HI! I'M BEN</strong></h1></p>
<p><h2>An aspiring Software Developer. With a 2 years experience as an IT Staff. I Graduated with a degree of BS in Information Technology.I do love editing images, troubleshooting computer hardware and software problems, and programming. I enjoy doing this things because of limitless discovery.</h2></p>
</div>
</div>
</body>