first commit

This commit is contained in:
Suvodip
2025-02-28 17:08:43 +05:30
commit e56d4f72ab
27 changed files with 598 additions and 0 deletions

23
.hta_slug/contact-us.php Normal file
View File

@@ -0,0 +1,23 @@
<div class="container flex-grow-1 d-flex align-items-center justify-content-center mt-4">
<div class="card shadow-lg border-0 p-4 w-100" style="max-width: 500px;">
<div class="card-body">
<h2 class="text-center text-primary fw-bold">Contact Us</h2>
<p class="text-center text-muted">We'd love to hear from you! Fill out the form below.</p>
<form>
<div class="mb-3">
<label class="form-label fw-semibold">Name</label>
<input type="text" class="form-control" placeholder="Your Name">
</div>
<div class="mb-3">
<label class="form-label fw-semibold">Email</label>
<input type="email" class="form-control" placeholder="Your Email">
</div>
<div class="mb-3">
<label class="form-label fw-semibold">Message</label>
<textarea class="form-control" rows="4" placeholder="Your Message"></textarea>
</div>
<button type="submit" class="btn btn-primary w-100 fw-semibold">Send Message</button>
</form>
</div>
</div>
</div>