| <!doctype html> |
| <html lang="en"> |
| <head> |
| <meta charset="utf-8"> |
| <meta name="viewport" content="width=device-width, initial-scale=1"> |
| <title>Contact Us - Intelligent Mobility System</title> |
| {% load static %} |
| <link href="https://cdn.jsdelivr.net/npm/bootstrap@5.3.0/dist/css/bootstrap.min.css" rel="stylesheet"> |
| <link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.4.0/css/all.min.css"> |
| <link rel="preconnect" href="https://fonts.googleapis.com"> |
| <link rel="preconnect" href="https://fonts.gstatic.com" crossorigin> |
| <link href="https://fonts.googleapis.com/css2?family=Poppins:wght@400;600;700&display=swap" rel="stylesheet"> |
| <link href="{% static 'styles.css' %}" rel="stylesheet"> |
| </head> |
| <body> |
| <nav class="navbar navbar-expand-lg navbar-dark bg-dark fixed-top"> |
| <div class="container-fluid"> |
| <a class="navbar-brand" href="#"><span style="color: red;">IMS</span></a> |
| <button class="navbar-toggler" type="button" data-bs-toggle="collapse" data-bs-target="#navbarNavDropdown" |
| aria-controls="navbarNavDropdown" aria-expanded="false" aria-label="Toggle navigation"> |
| <span class="navbar-toggler-icon"></span> |
| </button> |
| <div class="collapse navbar-collapse" id="navbarNavDropdown"> |
| <ul class="navbar-nav"> |
| <li class="nav-item"> |
| <a class="nav-link" aria-current="page" href="{% url 'index' %}">Home</a> |
| </li> |
| <li class="nav-item"> |
| <a class="nav-link" href="{% url 'about' %}">About</a> |
| </li> |
| <li class="nav-item"> |
| <a class="nav-link active" href="{% url 'contact' %}">Contact Us</a> |
| </li> |
| </ul> |
| </div> |
| </div> |
| </nav> |
| |
| <div class="container mt-5 pt-5"> |
| <h1 class="text-center mb-5">Contact Us</h1> |
| <div class="row"> |
| <div class="col-lg-6"> |
| <form> |
| <div class="mb-3"> |
| <label for="firstName" class="form-label">First Name</label> |
| <input type="text" class="form-control" id="firstName" placeholder="Enter First Name"> |
| </div> |
| <div class="mb-3"> |
| <label for="lastName" class="form-label">Last Name</label> |
| <input type="text" class="form-control" id="lastName" placeholder="Enter Last Name"> |
| </div> |
| <div class="mb-3"> |
| <label for="email" class="form-label">Email address</label> |
| <input type="email" class="form-control" id="email" placeholder="name@example.com"> |
| </div> |
| <div class="mb-3"> |
| <label for="query" class="form-label">Your Query</label> |
| <textarea class="form-control" id="query" rows="4"></textarea> |
| </div> |
| <button type="submit" class="btn btn-primary">Submit</button> |
| </form> |
| </div> |
| <div class="col-lg-6"> |
| <h4>Get in Touch</h4> |
| <p>Have a question or a project in mind? I'd love to hear from you. Reach out using the form or the contact details below.</p> |
| <ul class="list-unstyled"> |
| <li><i class="fas fa-envelope me-2"></i> nomi@gmail.com</li> |
| <li><i class="fas fa-phone me-2"></i> +923-143834872</li> |
| <li><i class="fas fa-map-marker-alt me-2"></i> Rwp, Pakistan</li> |
| </ul> |
| </div> |
| </div> |
| </div> |
|
|
| <footer class="footer bg-dark text-light py-3 mt-5"> |
| <div class="container"> |
| <div class="row"> |
| <div class="col-md-6"> |
| <h5>About Us</h5> |
| <p style="text-align: justify;"> |
| The Intelligent Mobility System (IMS) is a cutting-edge project focused on advancing autonomous vehicle technology and smart transportation solutions. |
| Our mission is to develop intelligent, safe, and efficient mobility systems using state-of-the-art AI models such as DDQN and NEAT. |
| </p> |
| </div> |
| <div class="col-md-3"> |
| <h5>Quick Links</h5> |
| <ul class="list-unstyled"> |
| <li><a href="{% url 'index' %}">Home</a></li> |
| <li><a href="{% url 'about' %}">About</a></li> |
| <li><a href="{% url 'about' %}">Services</a></li> |
| <li><a href="{% url 'contact' %}">Contact</a></li> |
| </ul> |
| </div> |
| <div class="col-md-3"> |
| <h5>Contact Us</h5> |
| <ul class="list-unstyled"> |
| <li>Email: nomi@gmail.com</li> |
| <li>Phone: 123-456-7890</li> |
| <li>Address: 123 country, xyz</li> |
| </ul> |
| </div> |
| </div> |
| <div class="row mt-4"> |
| <div class="col-md-12 text-center"> |
| <p>© 2022–2023 IMS,All rights reserved, Inc. · <a href="#">Privacy</a> · <a |
| href="#">Terms</a></p> |
| </div> |
| </div> |
| </div> |
| </footer> |
| <script> |
| document.addEventListener("DOMContentLoaded", function() { |
| var navbar = document.querySelector('.navbar'); |
| if (navbar) { |
| var navbarHeight = navbar.offsetHeight; |
| document.body.style.paddingTop = navbarHeight + 'px'; |
| } |
| }); |
| window.addEventListener("resize", function() { |
| var navbar = document.querySelector('.navbar'); |
| if (navbar) { |
| var navbarHeight = navbar.offsetHeight; |
| document.body.style.paddingTop = navbarHeight + 'px'; |
| } |
| }); |
| </script> |
| <script src="https://cdn.jsdelivr.net/npm/bootstrap@5.3.1/dist/js/bootstrap.bundle.min.js" |
| integrity="sha384-HwwvtgBNo3bZJJLYd8oVXjrBZt8cqVSpeBNS5n7C8IVInixGAoxmnlMuBnhbgrkm" |
| crossorigin="anonymous"></script> |
| </body> |
| </html> |