75 lines
3.1 KiB
PHP
75 lines
3.1 KiB
PHP
<?php // phpcs:ignoreFile
|
|
$pageTitle = 'Contact LASUCA';
|
|
$metaDescription = 'Reach the Louisiana Sugar Cane Cooperative by phone, email, or our contact form.';
|
|
$activeNav = 'contact';
|
|
require __DIR__ . '/inc/theme-header.php';
|
|
?>
|
|
|
|
<main>
|
|
<header class="hero hero-sub">
|
|
<div class="container">
|
|
<span class="badge">We’re here to help</span>
|
|
<h1>Contact the Louisiana Sugar Cane Cooperative</h1>
|
|
<p>
|
|
Have a question about deliveries, membership, or operations? Reach out to our team and we’ll
|
|
connect you with the right specialist.
|
|
</p>
|
|
</div>
|
|
</header>
|
|
|
|
<section class="page-section py-5">
|
|
<div class="container">
|
|
<div class="row g-4 align-items-start">
|
|
<div class="col-lg-5">
|
|
<div class="contact-card h-100">
|
|
<h2 class="h4 mb-3">Main office</h2>
|
|
<p class="mb-3">
|
|
Louisiana Sugar Cane Cooperative<br />
|
|
6092 Resweber Hwy<br />
|
|
St. Martinville, LA 70582
|
|
</p>
|
|
<p class="mb-2"><strong>Phone:</strong> (337) 394-3785</p>
|
|
<p class="mb-2"><strong>Fax:</strong> (337) 394-5692</p>
|
|
<p class="mb-2"><strong>Email:</strong> <a href="mailto:info@lasuca.com">info@lasuca.com</a></p>
|
|
<p class="mb-0"><strong>Web:</strong> <a href="https://www.lasuca.com">www.lasuca.com</a></p>
|
|
</div>
|
|
</div>
|
|
<div class="col-lg-7">
|
|
<div class="content-card h-100">
|
|
<h2 class="h4 mb-3">Send us a message</h2>
|
|
<p>
|
|
Complete the form and a member of the cooperative will reach back within one business day
|
|
during the grinding season.
|
|
</p>
|
|
<form method="post" action="contactengine.php" class="row g-3">
|
|
<div class="col-md-6">
|
|
<label for="Name" class="form-label">Name</label>
|
|
<input type="text" class="form-control" id="Name" name="Name" required />
|
|
</div>
|
|
<div class="col-md-6">
|
|
<label for="City" class="form-label">City</label>
|
|
<input type="text" class="form-control" id="City" name="City" />
|
|
</div>
|
|
<div class="col-12">
|
|
<label for="Email" class="form-label">Email</label>
|
|
<input type="email" class="form-control" id="Email" name="Email" required />
|
|
</div>
|
|
<div class="col-12">
|
|
<label for="Message" class="form-label">Message</label>
|
|
<textarea class="form-control" id="Message" name="Message" rows="6" required></textarea>
|
|
</div>
|
|
<div class="col-12">
|
|
<button type="submit" name="submit" class="btn btn-primary btn-lg">Submit</button>
|
|
</div>
|
|
</form>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</section>
|
|
</main>
|
|
|
|
<?php
|
|
require __DIR__ . '/inc/theme-footer.php';
|
|
?>
|