34766-vm/signup.php
2025-10-08 05:39:35 +00:00

17 lines
758 B
PHP

<?php include 'partials/header.php'; ?>
<div class="container py-5">
<div class="row">
<div class="col-md-8 mx-auto text-center">
<h2 class="mb-4">Join FoodBridge</h2>
<p class="lead mb-5">Are you a restaurant wanting to donate surplus food, or an NGO ready to distribute it to those in need? Choose your path below to get started.</p>
<div class="d-grid gap-4 d-md-flex justify-content-md-center">
<a href="signup-restaurant.php" class="btn btn-primary btn-lg px-4 gap-3">I'm a Restaurant</a>
<a href="signup-ngo.php" class="btn btn-secondary btn-lg px-4">I'm an NGO</a>
</div>
</div>
</div>
</div>
<?php include 'partials/footer.php'; ?>