-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCustomised-Cakes.php
More file actions
81 lines (81 loc) · 2.61 KB
/
Customised-Cakes.php
File metadata and controls
81 lines (81 loc) · 2.61 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
<?php
include_once("header.php");
?>
<!-- Section -->
<section class="hero7">
<a href="./index.php">HOME</a>/<a href="">SHOP</a>
<h2>Customised Cakes</h2>
</section>
<section class="inform">
<div class="container">
<blockquote>
<i>
Indulge in the sweet artistry of our custom cakes, tailored just for you! Elevate your special moments by
personalizing every detail that captures the essence of your event. We will craft a delicious masterpiece that
not only satisfies your taste buds but also adds a touch of sweetness to your memorable occasions. Let us turn
your cake dreams into a delectable reality!
</i>
</blockquote>
<blockquote class="sec">
<i>
To ensure the finest quality and attention to detail, please note that all custom cake orders for events must
be placed at least 48 hours in advance.
</i>
</blockquote>
</div>
</section>
<div class="frrm">
<div class="container">
<h1>Tell Us More About The Event!</h1>
<form method="post">
<div>
<label for="name">Name*</label>
<input type="text" id="name" required>
</div>
<div>
<label for="phone">Phone Number*</label>
<input type="tel" id="phone" required>
</div>
<div>
<label for="email">Email*</label>
<input type="email" id="email" required>
</div>
<div class="flex">
<div>
<label for="date">Date of the Event*</label>
<input type="date" id="date" required>
</div>
<div>
<label for="time">Time of the Event*</label>
<input type="time" id="time" value="10:00" required>
</div>
</div>
<div>
<label for="quantity">Quantity (in Kgs)*</label>
<input type="number" id="quantity" required>
</div>
<div>
<label for="theme">Theme of the Event*</label>
<input type="text" id="theme" required>
</div>
<div>
<label for="description">Description</label>
<textarea id="description" rows="4"></textarea>
</div>
<div>
<label>Add Reference Image</label>
<div class="upload-container">
<i class="fas fa-cloud-upload-alt"></i>
<p>Add Reference Image</p>
<button>BROWSE FOR IMAGES</button>
</div>
</div>
<div>
<button class="submit-button">Submit</button>
</div>
</form>
</div>
</div>
<?php
include_once("footer.php");
?>