-
Notifications
You must be signed in to change notification settings - Fork 0
/
welcome.php
37 lines (33 loc) · 979 Bytes
/
welcome.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
<?php
//Header file upon successfull login
require_once 'functions.php';
if(!isset($_SESSION['username']) || empty($_SESSION['username'])){
header("location: login.php");
exit;
}
else{
$name = $_SESSION["username"];
echo "Welcome $name!!!";
}
?>
<!DOCTYPE html>
<html lang="en">
<!--Template for welcome page -->
<head>
<meta charset="UTF-8">
<title>Welcome</title>
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/css/bootstrap.css">
<style type="text/css">
body{ font: 14px sans-serif; text-align: center; }
</style>
</head>
<body>
<div class="page-header">
<h1>Hi, <b><?php echo htmlspecialchars($_SESSION['username']); ?></b>. Welcome to my site.</h1>
</div>
<p>
<a href="logout.php" class="btn btn-danger">Sign Out of Your Account</a>
<a href="form.php" class="btn btn-primary">Fill up this form</a>
</p>
</body>
</html>