Files
controls-web/lasuca/grower-main.php
2026-02-17 09:29:34 -06:00

109 lines
4.4 KiB
PHP

<?php // phpcs:ignoreFile
if (session_status() === PHP_SESSION_NONE) {
session_start();
}
$isGrowerLoggedIn = !empty($_SESSION['myusername']);
$pageTitle = 'Grower Portal Overview';
$metaDescription = 'Discover the tools available in the LASUCA grower portal and how to access them.';
$activeNav = 'grower';
require __DIR__ . '/inc/theme-header.php';
?>
<main>
<header class="hero hero-sub">
<div class="container">
<span class="badge">Grower tools</span>
<h1>Everything you need to manage your crop</h1>
<p>
The LASUCA grower portal keeps daily tickets, load reports, and mill notices in one secure,
mobile-friendly dashboard. <?php echo $isGrowerLoggedIn ? 'Jump back in below to access your tools instantly.' : 'Sign in to stay synced with the factory team all season long.'; ?>
</p>
<?php if ($isGrowerLoggedIn) { ?>
<a class="btn btn-primary btn-lg mt-3" href="/grower-account.php">Open your account</a>
<?php } else { ?>
<a class="btn btn-primary btn-lg mt-3" href="/grower-login.php">Log in to the portal</a>
<?php } ?>
</div>
</header>
<section class="page-section py-5">
<div class="container">
<?php if ($isGrowerLoggedIn) { ?>
<?php require __DIR__ . '/grower-quicklinks.php'; ?>
<?php } ?>
<p class="section-heading text-center">What&rsquo;s inside</p>
<h2 class="text-center mb-5">Tools tailored for Louisiana cane growers</h2>
<div class="content-grid two-column">
<div class="content-card">
<h3>Daily ticket reports (DTR)</h3>
<p>
Download PDF packets organized by date, block, or contract. Each ticket shows net tons,
tare, and timestamp so you can reconcile loads quickly with your field team.
</p>
</div>
<div class="content-card">
<h3>Live scale data</h3>
<p>
Track tons in and grinding rates throughout the day. Performance snapshots update from the
scale house and control room as loads are processed.
</p>
</div>
<div class="content-card">
<h3>Alerts and notices</h3>
<p>
Stay informed about downtime, weather delays, or schedule adjustments. Alerts appear in the
dashboard and are emailed to your on-file contacts.
</p>
</div>
<div class="content-card">
<h3>Account management</h3>
<p>
Update contact information, request password resets, and notify the mill of harvest changes
without waiting on phone support.
</p>
</div>
</div>
</div>
</section>
<section class="page-section-dark py-5">
<div class="container">
<p class="section-heading text-center">Getting access</p>
<h2 class="text-center mb-5">New to the portal?</h2>
<div class="row g-4 justify-content-center">
<div class="col-lg-6">
<div class="content-card">
<h3>Call grower relations</h3>
<p>
Dial <strong>(337) 394-3785</strong> and ask for grower relations. We&rsquo;ll verify your account
and send login credentials the same day.
</p>
<p class="mb-0">
For after-hours support during harvest, leave a message with your grower number and best callback
time. Our team monitors voicemails from 5:00 a.m. to 9:00 p.m.
</p>
</div>
</div>
<div class="col-lg-6">
<div class="content-card">
<h3>Already registered?</h3>
<p>
Head straight to the login page and enter your grower ID and password. Bookmark your dedicated
folder once inside for quick access to DTR files.
</p>
<p class="mb-0">
Need to update authorized contacts? Email <a href="mailto:support@lasuca.com">support@lasuca.com</a>
and we&rsquo;ll adjust permissions the same day.
</p>
</div>
</div>
</div>
</div>
</section>
</main>
<?php
require __DIR__ . '/inc/theme-footer.php';
?>