-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackages.php
More file actions
713 lines (639 loc) · 35.2 KB
/
packages.php
File metadata and controls
713 lines (639 loc) · 35.2 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
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
<?php
// set cookie for set name
setcookie("set", $_POST["set"], time() + (86400 * 30), "/");
// set cookie for date
setcookie("date", $_POST["date"], time() + (86400 * 30), "/");
if(isset($_COOKIE['fname'])){
echo 'Thanks for booking with us '.$_COOKIE['fname']. '!<br>';
}
$set = $_POST["set"];
$date = $_POST["date"];
$packagePrice = 0;
?>
<?php
require '/home/bluetea1/db.php';
$item = $_POST['set'];
$table = "reservations";
$date = $_POST['date'];
$count = checkItemDateOverlap($item,$table,$date);
// echo "<p>$count reservations on $date.</p>";
function checkItemDateOverlap($item, $table, $date) {
global $cnxn;
global $set;
$start = date('Y-m-d', strtotime($date. ' - 2 days'));
$finish = date('Y-m-d', strtotime($date. ' + 2 days'));
$sql = "SELECT * FROM $table WHERE `setName` = '$set' AND (`reservation_date` BETWEEN '$start' AND
'$finish')";
$result = @mysqli_query($cnxn, $sql);
$howmany = mysqli_num_rows($result);
// echo "<p>$howmany reservations on $date.</p>";
return $howmany;
}
global $howmany;
if($set == "Layered Arch" || $set == "Modern Round") {
if($count != 0) {
?>
<script type="text/javascript">
alert("This set is not available on that date.");
window.location.href = "https://blueteam2022.greenriverdev.com/Wedding_Website_Sprint_3/index.php";
</script>
<?php
}
}
if($set == 'Dark Walnut' || $set == 'Rustic Wood' || $set == 'Vintage Mirror') {
if( $count >= 2) {
?>
<script type="text/javascript">
alert("This set is not available on that date.");
window.location.href = "https://blueteam2022.greenriverdev.com/Wedding_Website_Sprint_3/index.php";
</script>
<?php
}
}
?>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Packages</title>
<link href="https://cdn.jsdelivr.net/npm/bootstrap@5.2.2/dist/css/bootstrap.min.css" rel="stylesheet"
integrity="sha384-Zenh87qX5JnK2Jl0vWa8Ck2rdkQ2Bzep5IDxbcnCeuOxjzrPF/et3URy9Bv1WTRi" crossorigin="anonymous">
<link rel="stylesheet" href="packageStyle.css">
<meta name="robots" content="noindex, nofollow">
</head>
<body>
<header>
<a href="https://blueteam2022.greenriverdev.com/Wedding_Website/Main/">
<img alt="logo img" id="theLogo" src="logo.png"></a>
<div class="progress" style="height: 37px; width: 50%; ">
<div style="width: 40%; background-color:#d6b6ae" class="progress-bar">STEP 2/5: <br>Pick your Package</div>
</div>
<br>
</header>
<div class="row">
<div class="col-12">
<h1>Packages</h1><br>
</div>
</div>
<!--Layered Arch Package Info-->
<section id="layeredArch">
<div id="rentalIntro">
<h2><u>LAYERED ARCH RENTAL PACKAGES</u></h2>
<p>Pricing includes delivery & tear down (30 mile radius of Orrville, OH)</p>
<p>Delivery & tear down is available beyond the 30 miles for an additional fee.</p>
</div>
<h2>FULL SET Rental $849</h2>
<ul>INCLUDES EACH OF THE FOLLOWING ITEMS
<button type="button" class="collapsible">Contains All of These Items (click to view)</button>
<div class="content">
<li>Customized welcome sign (choice of trellis half arch or smooth half arch insert up to 25 words text)</li>
<li>3 piece seating chart half arch set (print service for cards is available for a small additional fee)</li>
<li>Table numbers 1-30</li>
<li>Gold Card Terrarium with choice of “Gifts & Cards” sign</li>
<li>5 “Reserved” signs</li>
<li>Up to 2 Double Half Arch Small signs (“Gifts & Cards,” “Take One,” “Don't Mind if I Do,” “In Loving Memory”</li>
<li>Up to 2 Sunset Small signs (“Please Sign Our Guestbook,” “Gifts & Cards,” “In Loving Memory”)</li>
<li>1 Double Half Arch Medium sign (“Cheers,” “The Bar,” “Guestbook,” or Custom Acrylic Text)</li>
<li>1 Double Full Arch Medium sign (“Signature Drinks,” or Custom Acrylic Text)</li>
<li>Unplugged Ceremony sign</li>
<li>Hairpin Record Player Prop</li>
<li>"Mr & Mrs" Custom Head Table Keepsake is a free gift in addition to the items above</li>
</div>
</ul>
<h2>PICK 6 Rental $749</h2>
<ul>CHOOSE 6 OF THE FOLLOWING ITEMS
<button type="button" class="collapsible">Pick from the following (click to view)</button>
<div class="content">
<li>Customized welcome sign (choice of trellis half arch or smooth half arch insert up to 25 words text)</li>
<li>3 piece seating chart half arch set (print service for cards is available for a small additional fee)</li>
<li>Table numbers 1-30</li>
<li>Gold Card Terrarium with choice of “Gifts & Cards” sign</li>
<li>5 “Reserved” signs</li>
<li>Up to 2 Double Half Arch Small signs (“Gifts & Cards,” “Take One,” “Don't Mind if I Do,” “In Loving Memory”)</li>
<li>Up to 2 Sunset Small signs (“Please Sign Our Guestbook,” “Gifts & Cards,” “In Loving Memory”)</li>
<li>1 Double Half Arch Medium sign (“Cheers,” “The Bar,” “Guestbook,” or Custom Acrylic Text)</li>
<li>1 Double Full Arch Medium sign (“Signature Drinks,” or Custom Acrylic Text)</li>
<li>Unplugged Ceremony sign</li>
<li>Hairpin Record Player Prop</li>
<li>"Mr & Mrs" Custom Head Table Keepsake is a free gift in addition to the items above</li>
</div>
</ul>
<h2>PICK 4 Rental $699</h2>
<ul>CHOOSE 4 OF THE FOLLOWING ITEMS
<button type="button" class="collapsible">Pick from the following (click to view)</button>
<div class="content">
<li>Customized welcome sign (choice of trellis half arch or smooth half arch insert up to 25 words text)
</li>
<li>3 piece seating chart half arch set (print service for cards is available for a small additional fee)
</li>
<li>Table numbers 1-30</li>
<li>Gold Card Terrarium with choice of “Gifts & Cards” sign</li>
<li>5 “Reserved” signs</li>
<li>Up to 2 Double Half Arch Small signs (“Gifts & Cards,” “Take One,” “Don't Mind if I Do,” “In Loving Memory”)
</li>
<li>Up to 2 Sunset Small signs (“Please Sign Our Guestbook,” “Gifts & Cards,” “In Loving Memory”)</li>
<li>1 Double Half Arch Medium sign (“Cheers,” “The Bar,” “Guestbook,” or Custom Acrylic Text)</li>
<li>1 Double Full Arch Medium sign (“Signature Drinks,” or Custom Acrylic Text)</li>
<li>Unplugged Ceremony sign</li>
<li>Hairpin Record Player Prop</li>
<li>"Mr & Mrs" Custom Head Table Keepsake is a free gift in addition to the items above</li>
</ul>
</div>
</section>
<!--Dark Walnut Packages-->
<section id="darkWalnut">
<section id="full_package">
<h2><u>DARK WALNUT RENTAL PACKAGES</u></h2>
<h2>Dark Walnut Full Package Rental</h2>
<div class="row">
<div class="col-12">
<em>$299 plus tax</em>
<ul>
<button type="button" class="collapsible">Contains All of These Items (click to view)</button>
<div class="content">
<li>“Welcome to Our Beginning” Round (24” diameter, with easel) or Rectangular (35.5” x 21” with easel)</li>
<li>“Find your Seat” (35.5” x 21” organizer with 30 clips & easel)</li>
<li>Table Numbers, double-sided (Numbers 1-30, 3.5” x 9”)</li>
<li>Antique Jug with “Honeymoon Fund” (jug & mini-hanger, 4.75” x 10”) (2pc)</li>
<li>“Mr. & Mrs.” Head Table Sign with small easel 7.25” x 22.5”</li>
<li>“We know that you would be here today if Heaven weren’t so far away” (10” x 10.5” memorial sign or seat saver with small easel)</li>
<li>“Here comes the Bride” ring bearer carrier (10.25” x 17.25” with cord)</li>
<li>“Better” & “Together” Chair Hangers (with cord 10.25” x 17.25”) (2pc)</li>
<li>“Please Sign our Guestbook” (self standing 7.25” x 16”)</li>
<li>“Just Married” & “Thank You” (reversible photo-shoot prop 7.25” x 31”)</li>
<li>“Take One” (7.25” x 7.25”)</li>
<li>“Programs” (7.25” x 16”)</li>
<li>“Enjoy the Moment, no photography please” 10.5” x 17” with small easel</li>
<li>8 Reserved signs (3.5” x 12” 4 with cord hanger option) (8pc)</li>
<li>Antique Leather and Wooden Trunk with “Cards” Banner</li>
</div>
</ul>
</div>
</div>
</section>
<h2>Dark Walnut “No Seating” Rental</h2>
<div class="row">
<div class="col-12">
<em> $245 plus tax</em>
<ul>
<button type="button" class="collapsible">Dark Walnut “No Seating” Rental (click to view)</button>
<div class="content">
<li>“Welcome to Our Beginning” Round (24” diameter, with easel) or Rectangular (35.5” x 21” with easel)</li>
<li>Antique Jug with “Honeymoon Fund” (jug & mini-hanger, 4.75” x 10”) (2pc)</li>
<li>“Mr. & Mrs.” Head Table Sign with small easel 7.25” x 22.5”</li>
<li>“We know that you would be here today if Heaven weren’t so far away” (10” x 10.5” memorial sign or seat saver with small easel)</li>
<li>“Here comes the Bride” ring bearer carrier (10.25” x 17.25” with cord)</li>
<li>“Better” & “Together” Chair Hangers (with cord 10.25” x 17.25”) (2pc)</li>
<li>“Please Sign our Guestbook” (self standing 7.25” x 16”)</li>
<li>“Just Married” & “Thank You” (reversible photo-shoot prop 7.25” x 31”)</li>
<li>“Take One” (7.25” x 7.25”)</li>
<li>“Programs” (7.25” x 16”)</li>
<li>“Enjoy the Moment, no photography please” 10.5” x 17” with small easel</li>
<li>8 Reserved signs (3.5” x 12” 4 with cord hanger option) (8pc)</li>
<li>Antique Leather and Wooden Trunk with “Cards” Banner</li>
</div>
</ul>
</div>
</div>
<h2>Dark Walnut “You Pick Four” Rental</h2>
<div class="row">
<div class="col-12">
<em>$199 plus tax</em>
<ul>
<button class="collapsible" type="button">SELECT ANY 4 OF THE FOLLOWING (click to view)</button>
<div class="content">
<li>“Welcome to Our Beginning” Round (24” diameter, with easel) or Rectangular (35.5” x 21” with easel)</li>
<li>“Find your Seat” (35.5” x 21” organizer with 30 clips & easel) </li>
<li>Table Numbers, double-sided (Numbers 1-30, 3.5” x 9”)</li>
<li>Antique Jug with “Honeymoon Fund” (jug & mini-hanger, 4.75” x 10”) (2pc)</li>
<li>“Mr. & Mrs.” Head Table Sign with small easel 7.25” x 22.5”</li>
<li>“We know that you would be here today if Heaven weren’t so far away” (10” x 10.5” memorial sign or seat saver with small easel)</li>
<li>“Here comes the Bride” ring bearer carrier (10.25” x 17.25” with cord)</li>
<li>“Better” & “Together” Chair Hangers (with cord 10.25” x 17.25”) (2pc)</li>
<li>“Please Sign our Guestbook” (self standing 7.25” x 16”)</li>
<li>“Just Married” & “Thank You” (reversible photo-shoot prop 7.25” x 31”)</li>
<li>“Take One” (7.25” x 7.25”)</li>
<li>“Programs” (7.25” x 16”)</li>
<li>“Enjoy the Moment, no photography please” 10.5” x 17” with small easel</li>
<li>8 Reserved signs (3.5” x 12” 4 with cord hanger option) (8pc)</li>
<li>Antique Leather and Wooden Trunk with “Cards” Banner</li>
</div>
</ul>
</div>
</div>
<section id="choose_welcome">
<h2>Choose either “Welcome Sign” below when selecting your rental package…</h2>
<h3>WELCOME SIGNS INCLUDE EASEL FOR DISPLAY</h3>
<p>Choose from “Rectangular”</p>
<p>or</p>
<p>“Round”</p>
</section>
<section id="aisle">
<div class="row">
<div class="col-12">
<br><h3> AISLE RUNNER ADD-ON</h3>
<p>Six signs featuring phrases of the 1 Corinthians 13 “Love Chapter.”</p>
<p >$99 with any rental package</p>
</div>
</div>
</section>
<section id="typewriter">
<div class="row">
<div class="col-12">
<br><h3>VINTAGE TYPEWRITER WITH MESSAGE TO GUESTS</h3>
<p>Travels in custom vintage</p>
<p>Walnut Ridge shipping crate.</p>
<p>$99 with any rustic wood rental package.</p>
</div>
</div>
</section>
</section>
<!--Modern Round Package info-->
<section id="modernRound">
<h2><u>MODERN ROUND RENTAL PACKAGES</u></h2>
<h4 class="text-center"> Pricing Includes Delivery & Pick Up (30 mile radius)</h4>
<h2>FULL SET Rental $799</h2>
<ul id="full-set">
<button type="button" class="collapsible">Contains All of These Items (click to view)</button>
<div class="content">
<li>Large Custom Welcome (round center becomes a keepsake)</li>
<li>Large Magnetic Rectangular (“Find Your Seat”, “Cocktails”, “Let’s Party”, or customize)</li>
<li>1-30 free standing table numbers</li>
<li>rn Locking Card Box or Vintage Industrial Typewriter Rental with custom message to guests (up to 100 words)</li>
<li>Set of “Reserved” signs (5)</li>
<li>2 Selections of Small Square Bracket Signs (“In Loving Memory”, “Gifts & Cards”, “Take One”, and/or customize)</li>
<li>2 Selections of Small Horizontal Bracket Signs (“Guestbook”, “Programs”, “Mr. & Mrs”. “Take One”, “Gifts and Cards”, and/or customize)</li>
<li>1 Medium Table Top (“Unplugged Ceremony”, or Magnetic Sign with “Cocktails” heading, “In Loving Memory” heading or customize.</li>
<li><em>All Full Set Rental Clients receive 1 SMALL COMPLIMENTARY 3-D CUSTOMIZATION on a small sign in addition to their Round Welcome Sign Keepsake</em></li>
</div>
</ul>
<h2>PICK 6 Rental $699
</h2>
<ul id="pick6">
<button type="button" class="collapsible">CHOOSE 6 OF THE FOLLOWING ITEMS (click to view)</button>
<div class="content">
<li>Large Custom Welcome (round center becomes a keepsake)</li>
<li>Large Magnetic Rectangular (“Find Your Seat”, “Cocktails”, “Let’s Party”, or customize)</li>
<li>1-30 free standing table numbers</li>
<li>Modern Locking Card Box </li>
<li>Vintage Industrial Typewriter Rental with custom message to guests (up to 100 words)</li>
<li>Set of “Reserved” signs (5)</li>
<li>2 Selections of Small Square Bracket Signs (“In Loving Memory”, “Gifts & Cards”, “Take One”, and/or customize)</li>
<li>2 Selections of Small Horizontal Bracket Signs (“Guestbook”, “Programs”, “Mr. & Mrs”. “Take One”, “Gifts and Cards”, and/or customize)</li>
<li>1 Medium Table Top (“Unplugged Ceremony”, or Magnetic Sign with “Cocktails” heading, “In Loving Memory” heading or customize.</li>
</div>
</ul>
<h2>PICK 4 Rental $599</h2>
<ul>
<button type="button" class="collapsible">4 OF THE FOLLOWING ITEMS (click to view)</button>
<div class="content">
<li>Large Custom Welcome (round center becomes a keepsake)</li>
<li>Large Magnetic Rectangular (“Find Your Seat”, “Cocktails”, “Let’s Party”, or customize)</li>
<li>1-30 free standing table numbers</li>
<li>Modern Locking Card Box </li>
<li>Vintage Industrial Typewriter Rental with custom message to guests (up to 100 words)</li>
<li>Set of “Reserved” signs (5)</li>
<li>1 Small Square Bracket Signs (“In Loving Memory”, “Gifts & Cards”, “Take One”, and/or customize)</li>
<li>1 Small Horizontal Bracket Signs (“Guestbook”, “Programs”, “Mr. & Mrs”. “Take One”, “Gifts and Cards”, and/or customize)</li>
<li>1 Medium Table Top (“Unplugged Ceremony”, or Magnetic Sign with “Cocktails” heading, “In Loving Memory” heading or customize.</li>
</div>
</ul>
<h2>A’ la Carte Modern Round Welcome Sign Rental $275 </h2>
<li>Includes design fee and round center keepsake. This price does not include delivery. ($500 minimum order for delivery.)</li>
<p>NOTE: Welcome Sign Customization is included in all package pricing. Additional Customization of Magnetic Headings or entire pieces will be subject to added design and supply fees. </p>
</section>
<!-- Rustic Wood Package Info-->
<section id="rusticWood">
<h2><u>RUSTIC WOOD RENTAL PACKAGES</u></h2>
<h2>Rustic Wood Full Package Rental</h2>
<div class="row">
<div class="col-12">
<em>$299 plus tax</em>
<ul>
<button type="button" class="collapsible">Contains All of These Items (click to view)</button>
<div class="content">
<li>"Welcome to Our Beginning” (approximately 32” x 18 ”with easel) Your choice of white framed, or rustic stained</li>
<li>“Find your Seat” (32.5” x 18.5” framed organizer with 25 clips & easel)</li>
<li>Table Numbers (1-25 3.5”x 3.5” with mini easels) (50 pc)</li>
<li>Antique Glass Jug with “Honeymoon Fund” (jug & mini- hanger 4.75”x 10”) (2pc)</li>
<li>“Mr. & Mrs.” Head Table Blocks (3pc)</li>
<li>“We know that you would be here today if Heaven weren’t so far away” (9.75” x 16” framed memorial seat saver)</li>
<li>Here Comes Your Bride” ring bearer carrier (9.75 x 15” framed with cord)</li>
<li>“Mr. & Mrs.” Chair Hangers (with cord 9.75” x 15”) (2pc)</li>
<li>“Guestbook please sign” (self standing 5.5” x 20”)</li>
<li>“Just Married” & “Thank You” (Reversible photo-shoot prop 5.5” x 29.5”)</li>
<li>"Take One” (5.5” x 6”)</li>
<li>“Programs” (15.75” x 5.5”)</li>
<li>“In Loving Memory of those who are forever in our hearts” (6”x 5.5” self standing)</li>
<li>8 “Reserved” signs (2.75” x 10” 4 with cord hanger option) (8pc)</li>
<li>Antique Whitewashed Trunk with “Cards” Banner</li>
</div>
</ul>
</div>
</div>
<h2>Rustic Wood “No Seating” Rental</h2>
<div class="row">
<div class="col-12">
<em>$245 plus tax</em>
<ul>
<button type="button" class="collapsible">Contains All of These Items (click to view)</button>
<div class="content">
<li>"Welcome to Our Beginning” (approximately 32” x 18 ”with easel) Your choice of white framed, or rustic stained</li>
<li>Antique Glass Jug with “Honeymoon Fund” (jug & mini- hanger 4.75”x 10”) (2pc)</li>
<li>“Mr. & Mrs.” Head Table Blocks (3pc)</li>
<li>“We know that you would be here today if Heaven weren’t so far away” (9.75” x 16” framed memorial seat saver)</li>
<li>Here Comes Your Bride” ring bearer carrier (9.75 x 15” framed with cord)</li>
<li>“Mr. & Mrs.” Chair Hangers (with cord 9.75” x 15”) (2pc)</li>
<li>“Guestbook please sign” (self standing 5.5” x 20”)</li>
<li>“Just Married” & “Thank You” (Reversible photo-shoot prop 5.5” x 29.5”)</li>
<li>"Take One” (5.5” x 6”)</li>
<li>“Programs” (15.75” x 5.5”)</li>
<li>“In Loving Memory of those who are forever in our hearts” (6”x 5.5” self standing)</li>
<li>8 “Reserved” signs (2.75” x 10” 4 with cord hanger option) (8pc)</li>
<li>Antique Whitewashed Trunk with “Cards” Banner</li>
</div>
</ul>
</div>
</div>
<h2>Rustic Wood “You Pick Four” Rental</h2>
<div class="row">
<div class="col-12">
<em>$199 plus tax</em>
<ul id="all_options_set">
<button type="button" class="collapsible">Pick Four of These Options (click to view)</button>
<div class="content">
<li>"Welcome to Our Beginning” (approximately 32” x 18 ”with easel) Your choice of white framed, or rustic stained</li>
<li>“Find your Seat” (32.5” x 18.5” framed organizer with 25 clips & easel)</li>
<li>Table Numbers (1-25 3.5”x 3.5” with mini easels) (50 pc)</li>
<li>Antique Glass Jug with “Honeymoon Fund” (jug & mini- hanger 4.75”x 10”) (2pc)</li>
<li>“Mr. & Mrs.” Head Table Blocks (3pc)</li>
<li>“We know that you would be here today if Heaven weren’t so far away” (9.75” x 16” framed memorial seat saver)</li>
<li>Here Comes Your Bride” ring bearer carrier (9.75 x 15” framed with cord)</li>
<li>“Mr. & Mrs.” Chair Hangers (with cord 9.75” x 15”) (2pc)</li>
<li>“Guestbook please sign” (self standing 5.5” x 20”)</li>
<li>“Just Married” & “Thank You” (Reversible photo-shoot prop 5.5” x 29.5”)</li>
<li>"Take One” (5.5” x 6”)</li>
<li>“Programs” (15.75” x 5.5”)</li>
<li>“In Loving Memory of those who are forever in our hearts” (6”x 5.5” self standing)</li>
<li>8 “Reserved” signs (2.75” x 10” 4 with cord hanger option) (8pc)</li>
<li>Antique Whitewashed Trunk with “Cards” Banner</li>
</div>
</ul>
</div>
</div>
</section>
<!--Vintage Mirror Package Info-->
<section id="vintageMirror">
<div id="package1Head">
<h1><u>VINTAGE MIRROR RENTAL PACKAGES</u></h1>
<h4 class="text-center"> Pricing Includes Delivery & Pick Up (30 mile radius)</h4>
<h2>Vintage Mirror Platinum Package Rental $849</h2>
</div>
<ul id="package1">
<button type="button" class="collapsible">INCLUDES EACH OF THE FOLLOWING 10 ITEMS (click to view)</button>
<div class="content">
<li>Welcome Sign with custom names & date & large wrought iron easel</li>
<li>Antique Typewriter Rental with customized message (100 words or less)</li>
<li>Choice of Linen Seating Chart Stringer or Large Custom Mirror for gold seal application</li>
<li>Table Numbers 1-30</li>
<li>Leather Domed Trunk with “cards” mirror with stand</li>
<li>“Enjoy the Moment- no photography please” mirror with stand</li>
<li>“Guestbook” mirror with stand</li>
<li>“Take One” small vanity mirror</li>
<li>1 Large Full Custom Mirror (50 words or less) with large wrought iron easel</li>
<li>1 Medium Full Custom Mirror (20 words or less) with large wrought iron easel</li>
<li>1 Small Custom Mirror (10 words or less) with wrought iron easel</li>
</div>
</ul>
<hr>
</div>
<div id="package2Head">
<h2>Vintage Mirror Gold Package Rental $799</h2>
</div>
<ul id="package2">
<button type="button" class="collapsible">INCLUDES ALL OF THE FOLLOWING 8 ITEMS (click to view)</button>
<div class="content">
<li>Welcome Sign with custom names & date & large wrought iron easel</li>
<li>Antique Typewriter Rental with customized message (100 words or less)</li>
<li>Choice of Linen Seating Chart Stringer or Large Custom Mirror for gold seal application</li>
<li>Table Numbers 1-30</li>
<li>Leather Domed Trunk with “cards” mirror with stand</li>
<li>“Enjoy the Moment- no photography please” mirror with stand</li>
<li>“Guestbook” mirror with stand</li>
<li>“Take One” small vanity mirror</li>
</div>
</ul>
<hr>
<div id="package3Head">
<h2>Vintage Mirror Pick 6 Rental Package $649</h2>
</div>
<ul id="package3">
<button type="button" class="collapsible">CHOOSE 6 OF THE FOLLOWING ITEMS (click to view)</button>
<div class="content">
<li>Welcome Sign with custom names & date & large wrought iron easel</li>
<li>Antique Typewriter Rental with customized message (100 words or less)</li>
<li>Pair of 2 Linen Stringers with wrought iron easels </li>
<li>Large Custom Mirror for gold seal application</li>
<li>Table Numbers 1-30</li>
<li>Leather Domed Trunk with “cards” mirror with stand</li>
<li>“Enjoy the Moment- no photography please” mirror with stand</li>
<li>“Guestbook” mirror with stand</li>
<li>“Take One” small vanity mirror</li>
</div>
</ul>
<hr>
<div id="package4Head">
<h2>Vintage Mirror Pick 4 Rental Package $599</h2>
</div>
<ul id="package4">
<button type="button" class="collapsible">CHOOSE 4 OF THE FOLLOWING ITEMS (click to view)</button>
<div class="content">
<li>Welcome Sign with custom names & date & large wrought iron easel</li>
<li>Antique Typewriter Rental with customized message (100 words or less)</li>
<li>Pair of 2 Linen Stringers with wrought iron easels </li>
<li>Large Custom Mirror for gold seal application</li>
<li>Table Numbers 1-30</li>
<li>Leather Domed Trunk with “cards” mirror with stand</li>
<li>“Enjoy the Moment- no photography please” mirror with stand</li>
<li>“Guestbook” mirror with stand</li>
<li>“Take One” small vanity mirror</li>
</div>
</ul>
<div id="package5">
<h2>Additional Custom Mirrors</h2>
<p>SMALL (up to 12 words) $40</p>
<p>MEDIUM (up to 24 words) $60</p>
<p>LARGE (up to 60 words) $80 </p>
<p>More words may be added depending on the design. Additional words may require an additional fee.</p>
</div>
</section>
<form name = "f" action = "packages.php" method = "POST">
</form>
<script src="packScript.js"></script>
<?php
if ($_POST['set'] == "Layered Arch") {
?>
<style type="text/css">
#layeredArch {
display: block;
}
</style>
<form action = "extras.php" method = "POST">
<h4>Please select the Package you would like: </h4>
<input type="radio" id="layeredPack1" name="package" value="FULL SET Rental">
<label for="layeredPack1">Full Set Rental - $849</label><br>
<input type="radio" id="layeredPack2" name="package" value="PICK 6 Rental">
<label for="layeredPack2">PICK 6 Rental - $749</label><br>
<input type="radio" id="layeredPack3" name="package" value="PICK 4 Rental">
<label for="layeredPack3">PICK 4 Rental - $699</label>
<br>
<input type = "submit" id = "submit" name = "submit">
<?php
echo '<input type = "hidden" name = "set" value = "'.$set.'">';
echo '<input type = "hidden" name = "date" value = "'.$date.'">';
?>
</form>
<?php }
if ($_POST['set'] == "Modern Round") {
?>
<style type="text/css">
#modernRound {
display: block;
}
</style>
<form action = "extras.php" method = "POST">
<h4>Please select the Package you would like: </h4>
<input type="radio" id="modPack1" name="package" value="FULL SET Rental">
<label for="modPack1">FULL SET Rental - $799</label><br>
<input type="radio" id="modPack2" name="package" value="PICK 6 Rental">
<label for="modPack2">PICK 6 Rental - $699</label><br>
<input type="radio" id="modPack3" name="package" value="PICK 4 Rental">
<label for="modPack3">PICK 4 Rental - $599</label><br>
<input type="radio" id="modPack4" name="package" value="A’ la Carte">
<label for="modPack4">A’ la Carte Modern Round Welcome Sign Rental - $275</label>
<br>
<input type = "submit" id = "submit" name = "submit">
<?php
echo '<input type = "hidden" name = "set" value = "'.$set.'">';
echo '<input type = "hidden" name = "date" value = "'.$date.'">';
?>
</form>
<?php }
if ($_POST['set'] == "Vintage Mirror") {
?>
<style type="text/css">
#vintageMirror {
display: block;
}
</style>
<form action = "extras.php" method = "POST">
<h4>Please select the Package you would like: </h4>
<input type="radio" id="vintPack1" name="package" value="Platinum Package">
<label for="vintPack1">Platinum Package Rental $849</label><br>
<input type="radio" id="vintPack2" name="package" value="Gold Package">
<label for="vintPack2">Gold Package Rental $799</label><br>
<input type="radio" id="vintPack3" name="package" value="PICK 6 Package">
<label for="vintPack3">PICK 6 Rental - $649</label><br>
<input type="radio" id="vintPack4" name="package" value="PICK 4 Package">
<label for="vintPack4">PICK 4 Rental - $599</label>
<br>
<h4>Additional Custom Mirrors</h4>
<input type="radio" id="mirror1" name="mirror" value="SMALL (up to 12 words) $40">
<label for="mirror1">SMALL (up to 12 words) - $40</label><br>
<input type="radio" id="mirror2" name="mirror" value="MEDIUM (up to 24 words) $60">
<label for="mirror2">MEDIUM (up to 24 words) - $60</label><br>
<input type="radio" id="mirror3" name="mirror" value="LARGE (up to 60 words) $80">
<label for="mirror3">LARGE (up to 60 words) - $80</label>
<input type="radio" id="mirror4" name="mirror" value="No Additional Mirrors">
<label for="mirror4">No Additional Mirrors</label>
<br>
<input type = "submit" id = "submit" name = "submit">
<?php
echo '<input type = "hidden" name = "set" value = "'.$set.'">';
echo '<input type = "hidden" name = "date" value = "'.$date.'">';
?>
</form>
<?php }
if ($_POST['set'] == "Dark Walnut") {
?>
<style type="text/css">
#darkWalnut {
display: block;
}
</style>
<form action = "extras.php" method = "POST">
<h4>Please select the Package you would like: </h4>
<input type="radio" id="darkPack1" name="package" value="FULL SET Rental">
<label for="darkPack1">FULL SET Rental - $299</label><br>
<input type="radio" id="darkPack2" name="package" value="PICK 6 Rental">
<label for="darkPack2">PICK 6 Rental - $245</label><br>
<input type="radio" id="darkPack3" name="package" value="PICK 4 Rental">
<label for="darkPack3">PICK 4 Rental - $199</label><br>
<br>
<h4>Select Welcome Sign: </h4>
<input type="radio" id="sign1" name="Sign" value="Rectangular">
<label for="sign1">Rectangular</label><br>
<input type="radio" id="sign2" name="Sign" value="Rounded">
<label for="sign2">Rounded</label><br>
<br>
<h4>Would you like the Aisle Runner Add-on?</h4>
<input type="radio" id="aisle1" name="aisleRunner" value="yes">
<label for="aisle1">Yes - + $99</label><br>
<input type="radio" id="aisle2" name="aisleRunner" value="no">
<label for="aisle2">No</label><br>
<br>
<h4>Would you like the Vintage Typewriter Add-on?</h4>
<input type="radio" id="Writer1" name="typeWriter" value="yes">
<label for="Writer1">Yes - + $99</label><br>
<input type="radio" id="Writer1" name="typeWriter" value="no">
<label for="Writer1">No</label><br>
<br>
<input type = "submit" id = "submit" name = "submit">
<?php
echo '<input type = "hidden" name = "set" value = "'.$set.'">';
echo '<input type = "hidden" name = "date" value = "'.$date.'">';
?>
</form>
<?php }
if ($_POST['set'] == "Rustic Wood") {
?>
<style type="text/css">
#rusticWood {
display: block;
}
</style>
<form action = "extras.php" method = "POST">
<h4>Please select the Package you would like: </h4>
<input type="radio" id="rustPack1" name="package" value="FULL SET Rental">
<label for="rustPack1">Rustic Wood Full Package Rental - $299</label><br>
<input type="radio" id="rustPack2" name="package" value="No Seating Rental">
<label for="rustPack2">Rustic Wood “No Seating” Rental - $245</label><br>
<input type="radio" id="rustPack3" name="package" value="PICK 4 Rental">
<label for="rustPack3">Rustic Wood “You Pick Four” Rental - $199</label>
<br>
<h4>Select Welcome Sign: </h4>
<input type="radio" id="sign1" name="Sign" value="Stained Wood">
<label for="sign1">Stained Wood</label><br>
<input type="radio" id="sign2" name="Sign" value="Framed White">
<label for="sign2">Framed White</label><br>
<br>
<h4>Would you like the Aisle Runner Add-on?</h4>
<input type="radio" id="aisle1" name="aisleRunner" value="yes">
<label for="aisle1">Yes - + $99</label><br>
<input type="radio" id="aisle2" name="aisleRunner" value="no">
<label for="aisle2">No</label><br>
<br>
<h4>would you like the Vintage Typewriter Add-on?</h4>
<input type="radio" id="Writer1" name="typeWriter" value="yes">
<label for="Writer1">Yes - + $99</label><br>
<input type="radio" id="Writer1" name="typeWriter" value="no">
<label for="Writer1">No</label><br>
<br>
<input type = "submit" id = "submit" name = "submit">
<?php }
echo '<input type = "hidden" name = "set" value = "'.$set.'">';
echo '<input type = "hidden" name = "date" value = "'.$date.'">';
//echo var_dump($_POST);
?>
</form>
</body>
</html>