-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsubmission-report.php
More file actions
105 lines (90 loc) · 3.29 KB
/
submission-report.php
File metadata and controls
105 lines (90 loc) · 3.29 KB
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
<!DOCTYPE html>
<html>
<head>
<title>Food Haven - Recipe Submitted</title>
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/5.15.1/css/all.min.css"
integrity="sha512-+4zCK9k+qNFUR5X+cKL9EIR+ZOhtIloNl9GIKS57V1MyNsYpYcUrUeQc9vNfzsWfV28IaLL3i96P9sdNyeRssA=="
crossorigin="anonymous" />
<link rel="stylesheet" href="style.css" />
<style>
body {
font-family: 'Poppins', sans-serif;
background-color: #f1f1f1;
}
.contain {
max-width: 800px;
margin: 3rem auto 0;
/* Add margin-top to move the content lower */
background-color: #fff;
padding: 2rem;
border-radius: 8px;
box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}
h2 {
font-size: 2rem;
text-align: center;
margin-bottom: 1.5rem;
color: #d65108;
}
.submitted-details {
margin-bottom: 2rem;
}
.submitted-details h3 {
font-size: 1.2rem;
margin-bottom: 0.5rem;
}
.submitted-details p {
margin-bottom: 0.8rem;
line-height: 1.4;
}
.submitted-details label {
font-weight: bold;
}
.submitted-details a {
color: #d65108;
text-decoration: none;
}
.submitted-details a:hover {
text-decoration: none;
}
</style>
</head>
<body>
<div class="header">
<a href="index.php" class="logo no-hover">Food Haven - Submission Report</a>
<div class="header-right">
<a href="index.php">Home</a>
<a href="upload.php">Upload</a>
<a href="search.html">Search</a>
<a href="about.html">About</a>
</div>
</div>
<div class="container">
<div class="contain">
<h2 class="submitted-h2">Recipe Submitted Successfully!</h2>
<div class="submitted-details">
<h3 class="submitted-h3">Submitted Recipe Details:</h3>
<p class="submitted-p"><label>Full Name:</label>
<?php echo $_GET["fullName"]; ?>
</p>
<p class="submitted-p"><label>Email Address:</label>
<?php echo $_GET["emailAddress"]; ?>
</p>
<p class="submitted-p"><label>Meal Name:</label>
<?php echo $_GET["mealName"]; ?>
</p>
<p class="submitted-p"><label>Category Name:</label>
<?php echo $_GET["categoryName"]; ?>
</p>
<p class="submitted-p"><label>Instructions:</label>
<?php echo $_GET["instructions"]; ?>
</p>
<p class="submitted-p"><label>Picture:</label> <a href="<?php echo $_GET["picture"]; ?>"><?php echo $_GET["picture"]; ?></a></p>
<p class="submitted-p"><label>Video Link:</label> <a href="<?php echo $_GET["videoLink"]; ?>"><?php echo $_GET["videoLink"]; ?></a></p>
</div>
<p>Thank you for sharing your recipe with us! If you'd like to submit another recipe, <a
href="upload.php">click here</a>.</p>
</div>
</div>
</body>
</html>