-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.php
90 lines (80 loc) · 2.24 KB
/
index.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
<?php
require 'config.php';
if(!empty($_SESSION["id"])){
$id = $_SESSION["id"];
$result = mysqli_query($conn, "SELECT * FROM users WHERE id = $id");
$row = mysqli_fetch_assoc($result);
}
else{
header("Location: login.php");
}
?>
<!DOCTYPE html>
<html lang="en" dir="ltr">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Index</title>
<style>
/* Adjust font sizes for smaller screens */
@media only screen and (max-width: 480px) {
h1 {
font-size: 23px;
}
p {
font-size: 10px;
color: white
}
.button {
font-size: 14px;
padding: 8px 16px;
}
}
/* Adjust margin-top for smaller screens */
@media only screen and (max-width: 767px) {
h1 {
margin-top: 50px;
}
}
/* Adjust background image size for smaller screens */
@media only screen and (max-width: 1024px) {
body {
background-size: contain;
}
}
body {
background-image: url('https://media.istockphoto.com/id/1340117122/photo/cube-with-shopping-trolley-symbol-on-the-laptop-keyboard.jpg?b=1&s=170667a&w=0&k=20&c=PU8iTTvTj6TV6_Quy9Z7KQJoOgY-rp_rqI9FbFNFYEw=');
background-size: cover;
text-align: center;
color: black;
}
h1 {
margin-top: 100px;
font-size: 50px;
}
p {
font-size: 24px;
}
.button {
display: inline-block;
padding: 12px 24px;
background-color: #4CAF50;
color: white;
text-align: center;
font-size: 18px;
border-radius: 8px;
margin-top: 50px;
text-decoration: none;
}
.button:hover {
background-color: blue;
}
</style>
</head>
<body style="text-align: left;">
<h1>Welcome <?php echo $row["name"]; ?> <br> To Eshop !! </h1>
<p> Shop your heart out with our wide selection of products<br> at unbeatable prices! Enjoy a seamless online shopping experience <br>and fast delivery.</p>
<a href="product.php" class="button">Shop now</a>
<a href="logout.php" class="button">Logout</a>
</body>
</html>