64 lines
3.3 KiB
PHP
64 lines
3.3 KiB
PHP
<?php
|
|
$pageTitle = "Contact | Todd Low Media";
|
|
include_once 'includes/header.php';
|
|
?>
|
|
|
|
<div class="container py-5">
|
|
<div class="row">
|
|
<div class="col-lg-6 offset-lg-3">
|
|
<div class="card shadow-lg border-0">
|
|
<div class="card-body p-5">
|
|
<h2 class="text-center mb-4">Let's Start Your Project</h2>
|
|
<form id="contactForm" action="#" method="POST">
|
|
<div class="mb-3">
|
|
<label for="name" class="form-label">Full Name</label>
|
|
<input type="text" class="form-control" id="name" name="name" required>
|
|
</div>
|
|
<div class="mb-3">
|
|
<label for="email" class="form-label">Email Address</label>
|
|
<input type="email" class="form-control" id="email" name="email" required>
|
|
</div>
|
|
<div class="mb-3">
|
|
<label for="phone" class="form-label">Phone Number (Optional)</label>
|
|
<input type="tel" class="form-control" id="phone" name="phone">
|
|
</div>
|
|
<div class="mb-3">
|
|
<label for="project" class="form-label">Project Type</label>
|
|
<select class="form-select" id="project" name="project" required>
|
|
<option value="">Select a Project Type</option>
|
|
<option value="web_design">Website Design</option>
|
|
<option value="app_development">Web/Mobile App</option>
|
|
<option value="redesign">Website Redesign</option>
|
|
<option value="other">Other</option>
|
|
</select>
|
|
</div>
|
|
<div class="mb-3">
|
|
<label for="message" class="form-label">Project Details</label>
|
|
<textarea class="form-control" id="message" name="message" rows="4" required placeholder="Tell me about your project goals..."></textarea>
|
|
</div>
|
|
<div class="d-grid">
|
|
<button type="submit" class="btn btn-primary btn-lg">Send Project Request</button>
|
|
</div>
|
|
</form>
|
|
</div>
|
|
</div>
|
|
|
|
<div class="text-center mt-4">
|
|
<h4>Alternative Contact Methods</h4>
|
|
<div class="d-flex justify-content-center gap-3 mt-3">
|
|
<a href="mailto:toddlowmedia@gmail.com" class="text-decoration-none">
|
|
<i class="fas fa-envelope fa-2x text-primary"></i>
|
|
</a>
|
|
<a href="tel:+1-555-123-4567" class="text-decoration-none">
|
|
<i class="fas fa-phone fa-2x text-success"></i>
|
|
</a>
|
|
<a href="https://linkedin.com/in/toddlow" target="_blank" class="text-decoration-none">
|
|
<i class="fab fa-linkedin fa-2x text-info"></i>
|
|
</a>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
|
|
<?php include_once 'includes/footer.php'; ?>
|