-
Notifications
You must be signed in to change notification settings - Fork 0
/
User.php
50 lines (50 loc) · 1.29 KB
/
User.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
<?php
session_start();
if(!isset($_SESSION['us1'])) // If session is not set then redirect to Login Page
{
header("Location:index.php");
}
else {
$now = time();
if ($now > $_SESSION['expire']) {
session_destroy();
}
}
?>
<html>
<head>
<title>User</title>
</head>
<style type="text/css">
body{
background-color: #ccccff;
font-family: shadow, sans-serif;
}
.pad{
width: 200px;
height: 200px;
margin: 8px 0;
margin-left: 100px;
box-sizing: border-box;
border: 3px solid black;
background-size:100% 100%;
background-repeat:no-repeat;
background-color:white;
font-family: Poppins-Regular, sans-serif;
font-size: 24px;
text-align: center;
}
</style>
<body>
<H3>Choose Your Level Here!!...</H3>
<div class="pad">
<a href="easy.php" style="color: black;"><img src="img/11.jpg" style="width: 100%;height: 100%;"></a>
</div>
<div class="pad" style="margin-left: 350px;margin-top: -210px;">
<a href="Medium.php" style="color: black;"><img src="img/13.jpg" style="width: 100%;height: 100%;"></a>
</div>
<div class="pad" style="margin-left: 600px;margin-top: -210px;">
<a href="Hard.php" style="color: black;"><img src="img/12.jpg" style="width: 100%;height: 100%;"></a>
</div>
</body>
</html>