feat: ensure consistent call/text phone number across all pages
Browse files- formsubmit-quote-form.html +142 -0
- index.html +36 -9
- quote-calculator.html +155 -135
formsubmit-quote-form.html
ADDED
|
@@ -0,0 +1,142 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
<!-- Consistent Call/Text Contact Block -->
|
| 2 |
+
<div class="w-full flex flex-col items-center mb-6">
|
| 3 |
+
<a href="tel:+17153212825" class="text-2xl font-bold text-amber-400 hover:text-amber-300 transition-colors">Call or
|
| 4 |
+
Text: (715) 321-2825</a>
|
| 5 |
+
<span class="text-green-200 text-sm mt-1">Fastest response for quotes & questions</span>
|
| 6 |
+
</div>
|
| 7 |
+
<!-- BuckRub Taxidermy Quote Request Form (Formsubmit.co) -->
|
| 8 |
+
<form action="https://formsubmit.co/cwcoach@yahoo.com" method="POST"
|
| 9 |
+
class="max-w-lg mx-auto bg-green-900/80 p-6 rounded-xl shadow-lg space-y-4">
|
| 10 |
+
<input type="hidden" name="_cc" value="dondlingergeneralcontracting@gmail.com">
|
| 11 |
+
<input type="hidden" name="_captcha" value="false">
|
| 12 |
+
<input type="hidden" name="_template" value="table">
|
| 13 |
+
<h2 class="text-2xl font-bold text-green-200 mb-4">Request a Quote</h2>
|
| 14 |
+
<p class="text-green-100 mb-4">Get a fast, friendly quote! Tell us about your project and how we can help you.
|
| 15 |
+
</p>
|
| 16 |
+
<div>
|
| 17 |
+
<label for="name" class="block text-green-100 font-semibold mb-1">Name</label>
|
| 18 |
+
<input type="text" id="name" name="name" required
|
| 19 |
+
class="w-full px-4 py-2 rounded-lg bg-white/10 border border-green-700 text-white" placeholder="Your Name">
|
| 20 |
+
</div>
|
| 21 |
+
<div>
|
| 22 |
+
<label for="email" class="block text-green-100 font-semibold mb-1">Email</label>
|
| 23 |
+
<input type="email" id="email" name="email" required
|
| 24 |
+
class="w-full px-4 py-2 rounded-lg bg-white/10 border border-green-700 text-white"
|
| 25 |
+
placeholder="you@email.com">
|
| 26 |
+
</div>
|
| 27 |
+
<div>
|
| 28 |
+
<label for="phone" class="block text-green-100 font-semibold mb-1">Phone</label>
|
| 29 |
+
<input type="tel" id="phone" name="phone"
|
| 30 |
+
class="w-full px-4 py-2 rounded-lg bg-white/10 border border-green-700 text-white" placeholder="(optional)">
|
| 31 |
+
</div>
|
| 32 |
+
<div>
|
| 33 |
+
<label for="service" class="block text-green-100 font-semibold mb-1">Service Requested</label>
|
| 34 |
+
<select id="service" name="service" required
|
| 35 |
+
class="w-full px-4 py-2 rounded-lg bg-white/10 border border-green-700 text-white">
|
| 36 |
+
<option value="">Select a service</option>
|
| 37 |
+
<option value="Shoulder Mount">Shoulder Mount</option>
|
| 38 |
+
<option value="Full Body Mount">Full Body Mount</option>
|
| 39 |
+
<option value="European Mount">European Mount</option>
|
| 40 |
+
<option value="Bird">Bird</option>
|
| 41 |
+
<option value="Fish">Fish</option>
|
| 42 |
+
<option value="Small Game">Small Game</option>
|
| 43 |
+
<option value="Habitat">Habitat</option>
|
| 44 |
+
<option value="Restoration">Restoration</option>
|
| 45 |
+
<option value="Rug">Rug</option>
|
| 46 |
+
<option value="Wall Mount">Wall Mount</option>
|
| 47 |
+
<option value="Lifesize">Lifesize</option>
|
| 48 |
+
<option value="Pedestal">Pedestal</option>
|
| 49 |
+
<option value="Antler Mount">Antler Mount</option>
|
| 50 |
+
<option value="Tanning">Tanning</option>
|
| 51 |
+
<option value="Pet Memorial">Pet Memorial</option>
|
| 52 |
+
<option value="Artisan/Custom">Artisan/Custom</option>
|
| 53 |
+
<option value="Other">Other (describe below)</option>
|
| 54 |
+
</select>
|
| 55 |
+
</div>
|
| 56 |
+
<div>
|
| 57 |
+
<label for="animal" class="block text-green-100 font-semibold mb-1">Animal/Species</label>
|
| 58 |
+
<input type="text" id="animal" name="animal"
|
| 59 |
+
class="w-full px-4 py-2 rounded-lg bg-white/10 border border-green-700 text-white"
|
| 60 |
+
placeholder="e.g. Whitetail Deer, Bass, Duck, Pet Dog">
|
| 61 |
+
</div>
|
| 62 |
+
<div>
|
| 63 |
+
<label for="pose" class="block text-green-100 font-semibold mb-1">Preferred Pose/Style</label>
|
| 64 |
+
<select id="pose" name="pose"
|
| 65 |
+
class="w-full px-4 py-2 rounded-lg bg-white/10 border border-green-700 text-white">
|
| 66 |
+
<option value="">Select a pose/style</option>
|
| 67 |
+
<option value="Upright">Upright</option>
|
| 68 |
+
<option value="Sneak">Sneak</option>
|
| 69 |
+
<option value="Full Sneak">Full Sneak</option>
|
| 70 |
+
<option value="Pedestal">Pedestal</option>
|
| 71 |
+
<option value="Wall Pedestal">Wall Pedestal</option>
|
| 72 |
+
<option value="Open Mouth">Open Mouth</option>
|
| 73 |
+
<option value="Closed Mouth">Closed Mouth</option>
|
| 74 |
+
<option value="Custom">Custom/Other</option>
|
| 75 |
+
</select>
|
| 76 |
+
</div>
|
| 77 |
+
<div>
|
| 78 |
+
<label for="details" class="block text-green-100 font-semibold mb-1">Project Details</label>
|
| 79 |
+
<textarea id="details" name="details" rows="4"
|
| 80 |
+
class="w-full px-4 py-2 rounded-lg bg-white/10 border border-green-700 text-white"
|
| 81 |
+
placeholder="Describe your project, special requests, or anything else we should know..."></textarea>
|
| 82 |
+
</div>
|
| 83 |
+
<div>
|
| 84 |
+
<label class="block text-green-100 font-semibold mb-1">Preferred Contact Method</label>
|
| 85 |
+
<div class="flex gap-4 mb-2">
|
| 86 |
+
<label class="inline-flex items-center"><input type="radio" name="contact_method" value="Phone"
|
| 87 |
+
class="mr-2">Phone</label>
|
| 88 |
+
<label class="inline-flex items-center"><input type="radio" name="contact_method" value="Email"
|
| 89 |
+
class="mr-2">Email</label>
|
| 90 |
+
<label class="inline-flex items-center"><input type="radio" name="contact_method" value="Text"
|
| 91 |
+
class="mr-2">Text</label>
|
| 92 |
+
<label class="inline-flex items-center"><input type="radio" name="contact_method" value="Any"
|
| 93 |
+
class="mr-2">Any</label>
|
| 94 |
+
</div>
|
| 95 |
+
</div>
|
| 96 |
+
<div>
|
| 97 |
+
<label for="best_time" class="block text-green-100 font-semibold mb-1">Best Time to Contact</label>
|
| 98 |
+
<select id="best_time" name="best_time"
|
| 99 |
+
class="w-full px-4 py-2 rounded-lg bg-white/10 border border-green-700 text-white">
|
| 100 |
+
<option value="">Select a time</option>
|
| 101 |
+
<option value="Morning">Morning</option>
|
| 102 |
+
<option value="Afternoon">Afternoon</option>
|
| 103 |
+
<option value="Evening">Evening</option>
|
| 104 |
+
<option value="Any">Any</option>
|
| 105 |
+
</select>
|
| 106 |
+
</div>
|
| 107 |
+
<div>
|
| 108 |
+
<label for="hear_about" class="block text-green-100 font-semibold mb-1">How did you hear about us?</label>
|
| 109 |
+
<select id="hear_about" name="hear_about"
|
| 110 |
+
class="w-full px-4 py-2 rounded-lg bg-white/10 border border-green-700 text-white">
|
| 111 |
+
<option value="">Select an option</option>
|
| 112 |
+
<option value="Google Search">Google Search</option>
|
| 113 |
+
<option value="Facebook">Facebook</option>
|
| 114 |
+
<option value="Instagram">Instagram</option>
|
| 115 |
+
<option value="Friend/Family">Friend/Family</option>
|
| 116 |
+
<option value="Repeat Customer">Repeat Customer</option>
|
| 117 |
+
<option value="Event/Show">Event/Show</option>
|
| 118 |
+
<option value="Other">Other</option>
|
| 119 |
+
</select>
|
| 120 |
+
</div>
|
| 121 |
+
<div>
|
| 122 |
+
<label class="block text-green-100 font-semibold mb-1">How soon do you need this?</label>
|
| 123 |
+
<div class="flex gap-2 mb-2">
|
| 124 |
+
<label class="inline-flex items-center"><input type="radio" name="urgency" value="ASAP"
|
| 125 |
+
class="mr-2">ASAP</label>
|
| 126 |
+
<label class="inline-flex items-center"><input type="radio" name="urgency" value="1-2 Weeks"
|
| 127 |
+
class="mr-2">1-2 Weeks</label>
|
| 128 |
+
<label class="inline-flex items-center"><input type="radio" name="urgency" value="1 Month" class="mr-2">1
|
| 129 |
+
Month</label>
|
| 130 |
+
<label class="inline-flex items-center"><input type="radio" name="urgency" value="Flexible"
|
| 131 |
+
class="mr-2">Flexible</label>
|
| 132 |
+
</div>
|
| 133 |
+
</div>
|
| 134 |
+
<div class="flex items-center mb-2">
|
| 135 |
+
<input type="checkbox" id="newsletter" name="newsletter" value="Yes" class="mr-2">
|
| 136 |
+
<label for="newsletter" class="text-green-100">Sign me up for news, tips, and special offers!</label>
|
| 137 |
+
</div>
|
| 138 |
+
<button type="submit"
|
| 139 |
+
class="w-full bg-green-600 hover:bg-green-500 text-white font-bold py-3 rounded-lg transition-colors">Send
|
| 140 |
+
Request</button>
|
| 141 |
+
</form>
|
| 142 |
+
<!-- End BuckRub Taxidermy Quote Request Form -->
|
index.html
CHANGED
|
@@ -99,35 +99,62 @@
|
|
| 99 |
<header class="bg-green-900/80 backdrop-blur-sm border-b border-green-600/30 sticky top-0 z-50">
|
| 100 |
<div class="container mx-auto px-4 py-4">
|
| 101 |
<div class="flex justify-between items-center">
|
| 102 |
-
<h1 class="text-2xl font-bold text-green-300">BuckRub Taxidermy
|
| 103 |
<div class="flex gap-4">
|
| 104 |
-
<a href="tel
|
| 105 |
class="bg-green-600 text-white px-6 py-3 rounded-lg font-bold hover:bg-green-500 transition-colors flex items-center gap-2">
|
| 106 |
<i data-feather="phone"></i>
|
| 107 |
Call
|
| 108 |
</a>
|
| 109 |
-
<a href="
|
| 110 |
class="border-2 border-green-500 text-green-400 px-6 py-3 rounded-lg font-bold hover:bg-green-500 hover:text-white transition-colors flex items-center gap-2">
|
| 111 |
-
<i data-feather="
|
| 112 |
-
|
| 113 |
</a>
|
| 114 |
</div>
|
| 115 |
</div>
|
| 116 |
</div>
|
| 117 |
</header>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 118 |
<!-- Hero Section -->
|
| 119 |
<section class="bg-gradient-to-br from-green-900 to-green-700 py-16">
|
| 120 |
<div class="container mx-auto px-4 text-center">
|
| 121 |
<h2 class="text-4xl md:text-6xl font-bold mb-6">Central Wisconsin's Premier Taxidermy</h2>
|
| 122 |
-
<p class="text-xl md:text-2xl text-green-100 mb-8">Serving hunters and outdoorsmen throughout Central WI
|
|
|
|
| 123 |
<a href="quote-calculator.html"
|
| 124 |
-
class="inline-block bg-green-600 text-white px-8 py-4 rounded-lg font-bold text-lg hover:bg-green-500 transition-colors">
|
| 125 |
Get Instant Quote
|
| 126 |
</a>
|
|
|
|
|
|
|
|
|
|
|
|
|
| 127 |
</div>
|
| 128 |
</section>
|
| 129 |
<!-- Portfolio Grid -->
|
| 130 |
<section class="py-12">
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 131 |
<div class="container mx-auto px-2 md:px-4">
|
| 132 |
<div class="swiper mySwiper max-w-lg md:max-w-3xl mx-auto">
|
| 133 |
<div class="swiper-wrapper">
|
|
@@ -233,9 +260,9 @@
|
|
| 233 |
class="bg-white text-green-700 px-8 py-4 rounded-lg font-bold text-lg hover:bg-green-50 transition-colors">
|
| 234 |
Get Instant Quote
|
| 235 |
</a>
|
| 236 |
-
<a href="tel
|
| 237 |
class="border-2 border-white text-white px-8 py-4 rounded-lg font-bold text-lg hover:bg-white hover:text-green-700 transition-colors">
|
| 238 |
-
Call Now: (
|
| 239 |
</a>
|
| 240 |
</div>
|
| 241 |
</section>
|
|
|
|
| 99 |
<header class="bg-green-900/80 backdrop-blur-sm border-b border-green-600/30 sticky top-0 z-50">
|
| 100 |
<div class="container mx-auto px-4 py-4">
|
| 101 |
<div class="flex justify-between items-center">
|
| 102 |
+
<h1 class="text-2xl font-bold text-green-300">BuckRub Taxidermy</h1>
|
| 103 |
<div class="flex gap-4">
|
| 104 |
+
<a href="tel:+17153212825"
|
| 105 |
class="bg-green-600 text-white px-6 py-3 rounded-lg font-bold hover:bg-green-500 transition-colors flex items-center gap-2">
|
| 106 |
<i data-feather="phone"></i>
|
| 107 |
Call
|
| 108 |
</a>
|
| 109 |
+
<a href="mailto:cwcoach@yahoo.com"
|
| 110 |
class="border-2 border-green-500 text-green-400 px-6 py-3 rounded-lg font-bold hover:bg-green-500 hover:text-white transition-colors flex items-center gap-2">
|
| 111 |
+
<i data-feather="mail"></i>
|
| 112 |
+
Email
|
| 113 |
</a>
|
| 114 |
</div>
|
| 115 |
</div>
|
| 116 |
</div>
|
| 117 |
</header>
|
| 118 |
+
<!-- Consistent Call/Text Contact Block -->
|
| 119 |
+
<div class="w-full flex flex-col items-center mb-6">
|
| 120 |
+
<a href="tel:+17153212825" class="text-2xl font-bold text-amber-400 hover:text-amber-300 transition-colors">Call
|
| 121 |
+
or Text: (715)
|
| 122 |
+
321-2825</a>
|
| 123 |
+
<span class="text-green-200 text-sm mt-1">Fastest response for quotes & questions</span>
|
| 124 |
+
</div>
|
| 125 |
<!-- Hero Section -->
|
| 126 |
<section class="bg-gradient-to-br from-green-900 to-green-700 py-16">
|
| 127 |
<div class="container mx-auto px-4 text-center">
|
| 128 |
<h2 class="text-4xl md:text-6xl font-bold mb-6">Central Wisconsin's Premier Taxidermy</h2>
|
| 129 |
+
<p class="text-xl md:text-2xl text-green-100 mb-8">Serving hunters and outdoorsmen throughout Central WI
|
| 130 |
+
</p>
|
| 131 |
<a href="quote-calculator.html"
|
| 132 |
+
class="inline-block bg-green-600 text-white px-8 py-4 rounded-lg font-bold text-lg hover:bg-green-500 transition-colors mr-2">
|
| 133 |
Get Instant Quote
|
| 134 |
</a>
|
| 135 |
+
<a href="https://buckrubtaxidermy.s3.us-east-2.amazonaws.com/formsubmit-quote-form.html" target="_blank"
|
| 136 |
+
class="inline-block bg-amber-500 text-white px-8 py-4 rounded-lg font-bold text-lg hover:bg-amber-400 transition-colors ml-2">
|
| 137 |
+
Quick Online Quote (Email)
|
| 138 |
+
</a>
|
| 139 |
</div>
|
| 140 |
</section>
|
| 141 |
<!-- Portfolio Grid -->
|
| 142 |
<section class="py-12">
|
| 143 |
+
<div class="max-w-xl mx-auto mb-8 text-center">
|
| 144 |
+
<h3 class="text-2xl font-bold text-green-200 mb-2">Contact & Location</h3>
|
| 145 |
+
<div class="text-green-100 mb-2">
|
| 146 |
+
<div><strong>Address:</strong> Wisconsin Rapids, WI, United States, 54494</div>
|
| 147 |
+
<div><strong>Phone:</strong> <a href="tel:+17153212825" class="underline">+1 715-321-2825</a></div>
|
| 148 |
+
<div><strong>Email:</strong> <a href="mailto:cwcoach@yahoo.com" class="underline">cwcoach@yahoo.com</a>
|
| 149 |
+
</div>
|
| 150 |
+
</div>
|
| 151 |
+
<div class="rounded-xl overflow-hidden border border-green-700 shadow-lg mt-4">
|
| 152 |
+
<iframe width="100%" height="250" style="border:0" loading="lazy" allowfullscreen
|
| 153 |
+
src="https://www.openstreetmap.org/export/embed.html?bbox=-89.858,44.350,-89.758,44.450&layer=mapnik&marker=44.400,-89.808"></iframe>
|
| 154 |
+
<div class="text-xs text-green-300 bg-green-900/80 p-1">Location: Wisconsin Rapids, WI, United States,
|
| 155 |
+
54494</div>
|
| 156 |
+
</div>
|
| 157 |
+
</div>
|
| 158 |
<div class="container mx-auto px-2 md:px-4">
|
| 159 |
<div class="swiper mySwiper max-w-lg md:max-w-3xl mx-auto">
|
| 160 |
<div class="swiper-wrapper">
|
|
|
|
| 260 |
class="bg-white text-green-700 px-8 py-4 rounded-lg font-bold text-lg hover:bg-green-50 transition-colors">
|
| 261 |
Get Instant Quote
|
| 262 |
</a>
|
| 263 |
+
<a href="tel:+17153212825"
|
| 264 |
class="border-2 border-white text-white px-8 py-4 rounded-lg font-bold text-lg hover:bg-white hover:text-green-700 transition-colors">
|
| 265 |
+
Call Now: (715) 321-2825
|
| 266 |
</a>
|
| 267 |
</div>
|
| 268 |
</section>
|
quote-calculator.html
CHANGED
|
@@ -12,141 +12,161 @@
|
|
| 12 |
</head>
|
| 13 |
|
| 14 |
<body class="font-body bg-gray-900 text-white min-h-screen flex items-center justify-center py-8">
|
| 15 |
-
<!--
|
| 16 |
-
<
|
| 17 |
-
class="
|
| 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 |
-
class="
|
| 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 |
<!-- End BuckRub Taxidermy Quote Request Form -->
|
| 151 |
</body>
|
| 152 |
|
|
|
|
| 12 |
</head>
|
| 13 |
|
| 14 |
<body class="font-body bg-gray-900 text-white min-h-screen flex items-center justify-center py-8">
|
| 15 |
+
<!-- Consistent Call/Text Contact Block -->
|
| 16 |
+
<div class="w-full flex flex-col items-center mb-6">
|
| 17 |
+
<a href="tel:+17153212825" class="text-2xl font-bold text-amber-400 hover:text-amber-300 transition-colors">Call
|
| 18 |
+
or Text: (715)
|
| 19 |
+
321-2825</a>
|
| 20 |
+
<span class="text-green-200 text-sm mt-1">Fastest response for quotes & questions</span>
|
| 21 |
+
</div>
|
| 22 |
+
<!-- BuckRub Taxidermy Quote Request Form (Formspree, Industry Standard) -->
|
| 23 |
+
<main class="w-full flex flex-col items-center justify-center min-h-screen bg-gray-900 text-white py-8">
|
| 24 |
+
<section aria-labelledby="quote-form-title" class="w-full max-w-lg">
|
| 25 |
+
<form action="https://formspree.io/f/mjkaolga" method="POST"
|
| 26 |
+
class="bg-green-900/80 p-6 rounded-xl shadow-lg space-y-4" aria-describedby="privacy-note" novalidate>
|
| 27 |
+
<h1 id="quote-form-title" class="text-2xl font-bold text-green-200 mb-4">Request a Quote</h1>
|
| 28 |
+
<p class="text-green-100 mb-4">Get a fast, friendly quote! Tell us about your project and how we can
|
| 29 |
+
help you.
|
| 30 |
+
</p>
|
| 31 |
+
<div>
|
| 32 |
+
<label for="name" class="block text-green-100 font-semibold mb-1">Name <span aria-hidden="true"
|
| 33 |
+
class="text-red-400">*</span></label>
|
| 34 |
+
<input type="text" id="name" name="name" required autocomplete="name" aria-required="true"
|
| 35 |
+
class="w-full px-4 py-2 rounded-lg bg-white/10 border border-green-700 text-white placeholder-green-200 focus:ring-2 focus:ring-green-400 focus:border-transparent transition"
|
| 36 |
+
placeholder="Your Name">
|
| 37 |
+
</div>
|
| 38 |
+
<div>
|
| 39 |
+
<label for="email" class="block text-green-100 font-semibold mb-1">Email <span aria-hidden="true"
|
| 40 |
+
class="text-red-400">*</span></label>
|
| 41 |
+
<input type="email" id="email" name="email" required autocomplete="email" aria-required="true"
|
| 42 |
+
class="w-full px-4 py-2 rounded-lg bg-white/10 border border-green-700 text-white placeholder-green-200 focus:ring-2 focus:ring-green-400 focus:border-transparent transition"
|
| 43 |
+
placeholder="you@email.com">
|
| 44 |
+
</div>
|
| 45 |
+
<div>
|
| 46 |
+
<label for="phone" class="block text-green-100 font-semibold mb-1">Phone</label>
|
| 47 |
+
<input type="tel" id="phone" name="phone" autocomplete="tel"
|
| 48 |
+
class="w-full px-4 py-2 rounded-lg bg-white/10 border border-green-700 text-white placeholder-green-200 focus:ring-2 focus:ring-green-400 focus:border-transparent transition"
|
| 49 |
+
placeholder="(optional)">
|
| 50 |
+
</div>
|
| 51 |
+
<div>
|
| 52 |
+
<label for="service" class="block text-green-100 font-semibold mb-1">Service Requested <span
|
| 53 |
+
aria-hidden="true" class="text-red-400">*</span></label>
|
| 54 |
+
<select id="service" name="service" required aria-required="true"
|
| 55 |
+
class="w-full px-4 py-2 rounded-lg bg-white/10 border border-green-700 text-white focus:ring-2 focus:ring-green-400 focus:border-transparent transition">
|
| 56 |
+
<option value="">Select a service</option>
|
| 57 |
+
<option value="Shoulder Mount">Shoulder Mount</option>
|
| 58 |
+
<option value="Full Body Mount">Full Body Mount</option>
|
| 59 |
+
<option value="European Mount">European Mount</option>
|
| 60 |
+
<option value="Bird">Bird</option>
|
| 61 |
+
<option value="Fish">Fish</option>
|
| 62 |
+
<option value="Small Game">Small Game</option>
|
| 63 |
+
<option value="Habitat">Habitat</option>
|
| 64 |
+
<option value="Restoration">Restoration</option>
|
| 65 |
+
<option value="Rug">Rug</option>
|
| 66 |
+
<option value="Wall Mount">Wall Mount</option>
|
| 67 |
+
<option value="Lifesize">Lifesize</option>
|
| 68 |
+
<option value="Pedestal">Pedestal</option>
|
| 69 |
+
<option value="Antler Mount">Antler Mount</option>
|
| 70 |
+
<option value="Tanning">Tanning</option>
|
| 71 |
+
<option value="Pet Memorial">Pet Memorial</option>
|
| 72 |
+
<option value="Artisan/Custom">Artisan/Custom</option>
|
| 73 |
+
<option value="Other">Other (describe below)</option>
|
| 74 |
+
</select>
|
| 75 |
+
</div>
|
| 76 |
+
<div>
|
| 77 |
+
<label for="animal" class="block text-green-100 font-semibold mb-1">Animal/Species</label>
|
| 78 |
+
<input type="text" id="animal" name="animal"
|
| 79 |
+
class="w-full px-4 py-2 rounded-lg bg-white/10 border border-green-700 text-white placeholder-green-200 focus:ring-2 focus:ring-green-400 focus:border-transparent transition"
|
| 80 |
+
placeholder="e.g. Whitetail Deer, Bass, Duck, Pet Dog">
|
| 81 |
+
</div>
|
| 82 |
+
<div>
|
| 83 |
+
<label for="pose" class="block text-green-100 font-semibold mb-1">Preferred Pose/Style</label>
|
| 84 |
+
<select id="pose" name="pose"
|
| 85 |
+
class="w-full px-4 py-2 rounded-lg bg-white/10 border border-green-700 text-white focus:ring-2 focus:ring-green-400 focus:border-transparent transition">
|
| 86 |
+
<option value="">Select a pose/style</option>
|
| 87 |
+
<option value="Upright">Upright</option>
|
| 88 |
+
<option value="Sneak">Sneak</option>
|
| 89 |
+
<option value="Full Sneak">Full Sneak</option>
|
| 90 |
+
<option value="Pedestal">Pedestal</option>
|
| 91 |
+
<option value="Wall Pedestal">Wall Pedestal</option>
|
| 92 |
+
<option value="Open Mouth">Open Mouth</option>
|
| 93 |
+
<option value="Closed Mouth">Closed Mouth</option>
|
| 94 |
+
<option value="Custom">Custom/Other</option>
|
| 95 |
+
</select>
|
| 96 |
+
</div>
|
| 97 |
+
<div>
|
| 98 |
+
<label for="details" class="block text-green-100 font-semibold mb-1">Project Details</label>
|
| 99 |
+
<textarea id="details" name="details" rows="4"
|
| 100 |
+
class="w-full px-4 py-2 rounded-lg bg-white/10 border border-green-700 text-white placeholder-green-200 focus:ring-2 focus:ring-green-400 focus:border-transparent transition"
|
| 101 |
+
placeholder="Describe your project, special requests, or anything else we should know..."></textarea>
|
| 102 |
+
</div>
|
| 103 |
+
<fieldset>
|
| 104 |
+
<legend class="block text-green-100 font-semibold mb-1">Preferred Contact Method</legend>
|
| 105 |
+
<div class="flex gap-4 mb-2">
|
| 106 |
+
<label class="inline-flex items-center"><input type="radio" name="contact_method" value="Phone"
|
| 107 |
+
class="mr-2">Phone</label>
|
| 108 |
+
<label class="inline-flex items-center"><input type="radio" name="contact_method" value="Email"
|
| 109 |
+
class="mr-2">Email</label>
|
| 110 |
+
<label class="inline-flex items-center"><input type="radio" name="contact_method" value="Text"
|
| 111 |
+
class="mr-2">Text</label>
|
| 112 |
+
<label class="inline-flex items-center"><input type="radio" name="contact_method" value="Any"
|
| 113 |
+
class="mr-2">Any</label>
|
| 114 |
+
</div>
|
| 115 |
+
</fieldset>
|
| 116 |
+
<div>
|
| 117 |
+
<label for="best_time" class="block text-green-100 font-semibold mb-1">Best Time to Contact</label>
|
| 118 |
+
<select id="best_time" name="best_time"
|
| 119 |
+
class="w-full px-4 py-2 rounded-lg bg-white/10 border border-green-700 text-white focus:ring-2 focus:ring-green-400 focus:border-transparent transition">
|
| 120 |
+
<option value="">Select a time</option>
|
| 121 |
+
<option value="Morning">Morning</option>
|
| 122 |
+
<option value="Afternoon">Afternoon</option>
|
| 123 |
+
<option value="Evening">Evening</option>
|
| 124 |
+
<option value="Any">Any</option>
|
| 125 |
+
</select>
|
| 126 |
+
</div>
|
| 127 |
+
<div>
|
| 128 |
+
<label for="hear_about" class="block text-green-100 font-semibold mb-1">How did you hear about
|
| 129 |
+
us?</label>
|
| 130 |
+
<select id="hear_about" name="hear_about"
|
| 131 |
+
class="w-full px-4 py-2 rounded-lg bg-white/10 border border-green-700 text-white focus:ring-2 focus:ring-green-400 focus:border-transparent transition">
|
| 132 |
+
<option value="">Select an option</option>
|
| 133 |
+
<option value="Google Search">Google Search</option>
|
| 134 |
+
<option value="Facebook">Facebook</option>
|
| 135 |
+
<option value="Instagram">Instagram</option>
|
| 136 |
+
<option value="Friend/Family">Friend/Family</option>
|
| 137 |
+
<option value="Repeat Customer">Repeat Customer</option>
|
| 138 |
+
<option value="Event/Show">Event/Show</option>
|
| 139 |
+
<option value="Other">Other</option>
|
| 140 |
+
</select>
|
| 141 |
+
</div>
|
| 142 |
+
<fieldset>
|
| 143 |
+
<legend class="block text-green-100 font-semibold mb-1">How soon do you need this?</legend>
|
| 144 |
+
<div class="flex gap-2 mb-2">
|
| 145 |
+
<label class="inline-flex items-center"><input type="radio" name="urgency" value="ASAP"
|
| 146 |
+
class="mr-2">ASAP</label>
|
| 147 |
+
<label class="inline-flex items-center"><input type="radio" name="urgency" value="1-2 Weeks"
|
| 148 |
+
class="mr-2">1-2 Weeks</label>
|
| 149 |
+
<label class="inline-flex items-center"><input type="radio" name="urgency" value="1 Month"
|
| 150 |
+
class="mr-2">1 Month</label>
|
| 151 |
+
<label class="inline-flex items-center"><input type="radio" name="urgency" value="Flexible"
|
| 152 |
+
class="mr-2">Flexible</label>
|
| 153 |
+
</div>
|
| 154 |
+
</fieldset>
|
| 155 |
+
<div class="flex items-center mb-2">
|
| 156 |
+
<input type="checkbox" id="newsletter" name="newsletter" value="Yes" class="mr-2">
|
| 157 |
+
<label for="newsletter" class="text-green-100">Sign me up for news, tips, and special
|
| 158 |
+
offers!</label>
|
| 159 |
+
</div>
|
| 160 |
+
<button type="submit"
|
| 161 |
+
class="w-full bg-green-600 hover:bg-green-500 text-white font-bold py-3 rounded-lg transition-colors focus:outline-none focus:ring-2 focus:ring-amber-400 focus:ring-offset-2">Send
|
| 162 |
+
Request</button>
|
| 163 |
+
<div id="form-success" class="hidden mt-4 text-green-200 text-center font-semibold" role="status"
|
| 164 |
+
aria-live="polite"></div>
|
| 165 |
+
<p id="privacy-note" class="text-xs text-green-300 mt-2">We respect your privacy. Your information will
|
| 166 |
+
only be used to respond to your inquiry and will never be shared or sold.</p>
|
| 167 |
+
</form>
|
| 168 |
+
</section>
|
| 169 |
+
</main>
|
| 170 |
<!-- End BuckRub Taxidermy Quote Request Form -->
|
| 171 |
</body>
|
| 172 |
|