-
Notifications
You must be signed in to change notification settings - Fork 12
/
cooking-confirmation.php
45 lines (31 loc) · 1.08 KB
/
cooking-confirmation.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
<?php
$page_title = 'Yoko\'s Kitchen';
$nav_home_class = '';
$nav_citations_class = '';
$nav_cooking_class = 'active_page';
$nav_flowershop_class = '';
$form_japanese_vegetarian = $_POST['japanese-vegetarian']; // untrusted
$form_sauces_masterclass = $_POST['sauces-masterclass']; // untrusted
$form_email = $_POST['email']; // untrusted
?>
<!DOCTYPE html>
<html lang="en">
<?php include 'includes/meta.php' ?>
<body>
<?php include 'includes/header.php' ?>
<main class="courses">
<h2><?php echo htmlspecialchars($page_title); ?></h2>
<p>We've received your request for more information about our courses. We will contact you shortly.</p>
<h3>Course Information Request Confirmation</h3>
<dl>
<dt>Japanese Vegetarian</dt>
<dd><?php echo htmlspecialchars($form_japanese_vegetarian); ?></dd>
<dt>Sauces Masterclass</dt>
<dd><?php echo htmlspecialchars($form_sauces_masterclass); ?></dd>
<dt>Your Email</dt>
<dd><?php echo htmlspecialchars($form_email); ?></dd>
</dl>
</main>
<?php include "includes/footer.php" ?>
</body>
</html>