home
/
aioutajg
/
pdfbirle.com
/
p
/
Go to Home Directory
+
Upload
Create File
root@0UT1S:~$
Execute
By Order of Mr.0UT1S
[DIR] ..
N/A
about.php
5.33 KB
Rename
Delete
contact.php
4.49 KB
Rename
Delete
cookies-policy.php
6.08 KB
Rename
Delete
dmca.php
7.21 KB
Rename
Delete
index.php
0 bytes
Rename
Delete
privacy-policy.php
8.58 KB
Rename
Delete
terms-of-service.php
7.10 KB
Rename
Delete
<?php // contact.php $page_title = "İletişim - PDF Birle | Ücretsiz PDF Birleştirme Aracı"; $page_description = "PDF Birle ile iletişime geçin. Sorularınız veya destek talepleriniz için bize e-posta yoluyla ulaşabilir veya +92 313 5786132 numaralı telefonu arayabilirsiniz."; $canonical_url = "https://www.pdfbirle.com/p/contact"; // Canonical URL for this page ?> <!-- Header --> <?php include '../includes/header.php'; ?> <!DOCTYPE html> <html lang="tr"> <head> <meta charset="UTF-8"> <meta name="viewport" content="width=device-width, initial-scale=1.0"> <!-- Bootstrap CSS --> <link href="https://cdn.jsdelivr.net/npm/bootstrap@5.3.0/dist/css/bootstrap.min.css" rel="stylesheet"> <!-- Custom CSS --> <link rel="stylesheet" href="../assets/css/style.css"> <!-- Adjusted path --> <!-- Bootstrap JS --> <script src="https://cdn.jsdelivr.net/npm/bootstrap@5.3.0/dist/js/bootstrap.bundle.min.js"></script> </head> <body> <!-- Contact Us Section --> <section class="contact-section py-5"> <div class="container"> <div class="row"> <div class="col-lg-8 mx-auto text-center"> <h1 class="display-4 mb-4">İletişim</h1> <p class="lead"> Sorularınız mı var? Destek mi arıyorsunuz? Bize ulaşın! E-posta veya telefonla bize ulaşabilir ya da aşağıdaki formu doldurabilirsiniz. </p> </div> </div> <div class="row mt-5"> <div class="col-lg-6"> <h2 class="mb-4">İletişim Bilgileri</h2> <ul class="list-unstyled"> <li class="mb-3"> <strong>E-posta:</strong> <a href="mailto:martindee677@gmail.com">martindee677@gmail.com</a> </li> <li class="mb-3"> <strong>Telefon:</strong> <a href="tel:03135786132">+92 313 5786132</a> </li> </ul> </div> <div class="col-lg-6"> <h2 class="mb-4">Bize Mesaj Gönderin</h2> <form id="contact-form" action="submit_contact.php" method="POST"> <div class="mb-3"> <label for="name" class="form-label">Adınız</label> <input type="text" class="form-control" id="name" name="name" required> </div> <div class="mb-3"> <label for="email" class="form-label">E-posta Adresiniz</label> <input type="email" class="form-control" id="email" name="email" required> </div> <div class="mb-3"> <label for="message" class="form-label">Mesajınız</label> <textarea class="form-control" id="message" name="message" rows="5" required></textarea> </div> <button type="submit" class="btn btn-primary">Mesaj Gönder</button> </form> </div> </div> <div class="row mt-5"> <div class="col-lg-12"> <h2 class="mb-4">Konumumuz</h2> <!-- Placeholder for Google Map --> <div class="map-container"> <iframe src="https://www.google.com/maps/embed?pb=!1m18!1m12!1m3!1d3312.536674741498!2d71.5204153152105!3d33.87814128065329!2m3!1f0!2f0!3f0!3m2!1i1024!2i768!4f13.1!3m3!1m2!1s0x38d918f5f5f5f5f5%3A0x5f5f5f5f5f5f5f5f!2sPDF%20Birle!5e0!3m2!1sen!2s!4v1631234567890!5m2!1sen!2s" width="100%" height="400" style="border:0;" allowfullscreen="" loading="lazy"> </iframe> </div> </div> </div> </div> </section> <!-- Footer --> <?php include '../includes/footer.php'; ?> <!-- Bootstrap JS --> <script src="https://cdn.jsdelivr.net/npm/bootstrap@5.3.0/dist/js/bootstrap.bundle.min.js"></script> <!-- Custom JS --> <script src="../assets/js/script.js"></script> </body> </html>
Save