-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.php
52 lines (34 loc) · 1.78 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
<?php
$index = 'selected';
$siteTitle = "Welcome to Recipe world !";
include 'inc/header.php';
?>
<body class=" indexbody">
<section >
<div class="container" data-aos="fade-up" data-aos-duration="2000" data-aos-once="true"><div style="padding-bottom: 100px; class="row">
</div>
<div style="background: #ffffff;border-width: 10px;border-color: var(--red);border-radius: 40px;">
<div class="form-group">
<div class="col" style="text-align: center; padding-bottom: 100px; padding-top: 102px;">
<h2 style="color: rgb(118,75,196);font-size: 55px;transform: scale(1.01);border-bottom-style: none;text-shadow: 1px 0px 1px var(--white), 0px 1px 2px var(--dark), -1px 0px 2px var(--light), 0px -1px 2px var(--light), 0px 0px 3px var(--light);">
<?php
if (isset($_SESSION['userlogin']) && ($_SESSION['userlogin'] === 'OK')) {
$name = $_SESSION['userdata']['name'];
} else {
$name = "";
}
echo 'Hello ' . $name
. ' <em style="padding-top:10px;" class="fa fa-smile" '
. 'style="font-size: 35px;">'
. '</em></h2></br></br>';
?>
<h2 style="color: rgb(118,75,196);font-size: 55px;transform: scale(1.01);border-bottom-style: none;text-shadow: 1px 0px 1px var(--white), 0px 1px 2px var(--dark), -1px 0px 2px var(--light), 0px -1px 2px var(--light), 0px 0px 3px var(--light);">
</em> WELCOME TO RECIPE WORLD!
</h2>
</div>
</div>
</section>
<div class="fixed-bottom">
<?php require 'inc/footer.php'; ?>
</div>
</body>