-
Notifications
You must be signed in to change notification settings - Fork 0
/
welcome.php
128 lines (94 loc) · 4.04 KB
/
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
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
<?php
// Initialize the session
session_start();
// Check if the user is logged in, if not then redirect him to login page
if(!isset($_SESSION["loggedin"]) || $_SESSION["loggedin"] !== true){
header("location: login.php");
exit;
}
?>
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Welcome</title>
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/css/bootstrap.css">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet" href="index1.css">
<link rel="stylesheet" href="index2.css">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.7.0/css/font-awesome.min.css">
<style type="text/css">
body{ font: 14px sans-serif; }
</style>
</head>
<body id="mypage">
<div class="page-header">
<h1>Hi, <b><?php echo htmlspecialchars($_SESSION["username"]); ?></b>. Welcome to our site.</h1>
</div>
<!-- Navbar -->
<div class="w3-top">
<a href="#" class="w3-bar-item w3-button w3-teal"><i class="fa fa-home w3-margin-right"></i>Home</a>
<a href="#team" class="w3-bar-item w3-button w3-hide-small w3-hover-white">Developers</a>
<div class="w3-dropdown-hover w3-hide-small">
<button class="w3-button" title="Notifications">Games<i class="fa fa-caret-down"></i></button>
<div class="w3-dropdown-content w3-card-4 w3-bar-block">
<a href="maths.php" class="w3-bar-item w3-button">Maths Multplication Game</a>
<a href="fruits/fruitsSlice.php" class="w3-bar-item w3-button">Fruits Slicing Game</a>
</div>
</div>
<a href="#contact" class="w3-bar-item w3-button w3-hide-small w3-hover-white">Contact</a>
</div>
<!-- Image Header -->
<div class="w3-display-container w3-animate-opacity">
<img src="pictures/games.png" alt="boat" style="width:100%;min-height:350px;max-height:600px;">
</div>
<!-- Team Container -->
<div class="w3-container w3-padding-64 w3-center" id="team">
<h2>OUR DEVELOPERS</h2>
<p>Meet the Developers</p>
<div class="w3-row"><br>
<div class="w3-quarter">
<img src="pictures/aman.jpeg" alt="Aman" style="width:45%" class="w3-circle w3-hover-opacity">
<h3>Amam Nailwal </h3>
<p>Front End Developer</p>
</div>
<div class="w3-quarter">
<img src="pictures/gopal.jpeg" alt="Gopal" style="width:45%" class="w3-circle w3-hover-opacity">
<h3>Gopal Ojha</h3>
<p>Back End Developer,Support</p>
</div>
<div class="w3-quarter">
<img src="pictures/umang.jpeg" alt="Umang" style="width:45%" class="w3-circle w3-hover-opacity">
<h3>Umang Mishra</h3>
<p>Front End Developer</p>
</div>
</div>
</div>
<!-- Contact Container -->
<div class="w3-container w3-padding-64 w3-theme-l5" id="contact">
<div class="w3-row">
<div class="w3-col m5">
<div class="w3-padding-16"><span class="w3-xlarge w3-border-teal w3-bottombar">Contact Us</span></div>
<p><i class="fa fa-envelope-o w3-text-teal w3-xlarge"></i> [email protected]</p>
<p>[email protected]</p>
<p>[email protected]</p>
</div>
</div>
</div>
<p>
<a href="reset-password.php" class="btn btn-warning">Reset Your Password</a>
<a href="logout.php" class="btn btn-danger">Sign Out of Your Account</a>
</p>
<!-- Footer -->
<footer class="w3-container w3-padding-32 w3-theme-d1 w3-center">
<h4>Follow Us</h4>
<a class="w3-button w3-large w3-teal" href="javascript:void(0)" title="Facebook"><i class="fa fa-facebook"></i></a>
<a class="w3-button w3-large w3-teal w3-hide-small" href="javascript:void(0)" title="Linkedin"><i class="fa fa-linkedin"></i></a>
<div style="position:relative;bottom:100px;z-index:1;" class="w3-tooltip w3-right">
<span class="w3-text w3-padding w3-teal w3-hide-small">Go To Top</span>
<a class="w3-button w3-theme" href="#myPage"><span class="w3-xlarge">
<i class="fa fa-chevron-circle-up"></i></span></a>
</div>
</footer>
</body>
</html>