jun 18
This commit is contained in:
56
contacts.php
56
contacts.php
@@ -48,10 +48,10 @@
|
||||
</li>
|
||||
</ul>
|
||||
<div class="form-container">
|
||||
<form class="form-search d-flex align-items-center d-sm-flex justify-content-sm-between" role="search">
|
||||
<form class="form-search d-flex align-items-center d-sm-flex justify-content-sm-between mb-0" role="search">
|
||||
<input id="src-input" class="form-control rounded-0 border-0" type="search" placeholder="Search ...">
|
||||
<button class="btn" type="submit" style="padding-bottom: 0px;padding-top: 0px;">
|
||||
<span class="material-icons">
|
||||
<span class="material-icons pt-1">
|
||||
search
|
||||
</span>
|
||||
</button>
|
||||
@@ -96,16 +96,14 @@
|
||||
<img src="assets/images/logo.webp" class="logo-img mt-3 mt-lg-0 mt-md-0" alt="">
|
||||
<div class="dropdown" id="dropdownid" style="position: absolute; width:fit-content;">
|
||||
<a class="btn btn-secondary dropdown-toggle" href="#" role="button" id="dropdownMenuLink" data-bs-toggle="dropdown" aria-expanded="false">
|
||||
<i class="fa-solid fa-users"></i>
|
||||
<i class="fa-solid fa-users"></i>
|
||||
|
||||
</a>
|
||||
<ul class="dropdown-menu" aria-labelledby="dropdownMenuLink">
|
||||
<?php if (loggedin()) {
|
||||
echo '<li><a class="dropdown-item" href="login.html">Log in</a></li>
|
||||
<li><a class="dropdown-item" href="signup.php">Sign up</a></li>
|
||||
<li><a class="dropdown-item" href="php/logout.php">Log out</a></li>';
|
||||
} else {
|
||||
echo '<li><a class="dropdown-item" href="login.html">Log in</a></li>
|
||||
echo '<li><a class="dropdown-item" href="php/logout.php">Log out</a></li>';
|
||||
} else {
|
||||
echo '<li><a class="dropdown-item" href="login.html">Log in</a></li>
|
||||
<li><a class="dropdown-item" href="signup.php">Sign up</a></li>';
|
||||
} ?>
|
||||
</ul>
|
||||
@@ -206,8 +204,6 @@
|
||||
<div class="breadcrumb-item-sep">/</div>
|
||||
<div class="breadcrumb-item-about" aria-current="page">Contacts</div>
|
||||
</div>
|
||||
|
||||
|
||||
<!-- Address -->
|
||||
<section>
|
||||
<div class="headline d-flex align-items-center justify-content-center flex-column mt-5 pt-lg-5">
|
||||
@@ -242,14 +238,38 @@
|
||||
<iframe src="https://www.google.com/maps/embed?pb=!1m18!1m12!1m3!1d691259.3591892968!2d-77.60275823607651!3d38.56325402877762!2m3!1f0!2f0!3f0!3m2!1i1024!2i768!4f13.1!3m3!1m2!1s0x89b64de885e53a9d%3A0x67e76f2416faa504!2z0KHQv9GA0LjQvdCz0YTQuNC70LQsINCS0LjRgNGf0LjQvdC40ZjQsCwg0KHRmNC10LTQuNGa0LXQvdC1INCU0YDQttCw0LLQtQ!5e0!3m2!1ssr!2srs!4v1718006987157!5m2!1ssr!2srs" width="100%" style="border:0;" allowfullscreen="" loading="lazy" referrerpolicy="no-referrer-when-downgrade"></iframe>
|
||||
</div>
|
||||
</section>
|
||||
<!-- footer -->
|
||||
<footer class="d-flex flex-column justify-content-center align-items-center pb-4 py-lg-5 py-md-5">
|
||||
<img src="assets/images/footer-logo.webp" class="mt-3 mt-md-0" alt="">
|
||||
<div class="footer-copyright">
|
||||
(c)2024 Globaly. All rights reserved. |
|
||||
<a href="#">Privacy Policy</a>
|
||||
</div>
|
||||
</footer>
|
||||
<!-- footer -->
|
||||
<footer class="d-flex flex-column justify-content-center align-items-center pb-4 py-lg-5 py-md-5">
|
||||
<div class="scrollToTopBtn">
|
||||
<button onclick="topFunction()" id="scrollToTopBtn"><i class="fa-solid fa-chevron-up"></i></button>
|
||||
</div>
|
||||
<img src="assets/images/footer-logo.webp" class="mt-3 mt-md-0" alt="">
|
||||
<div class="footer-copyright">
|
||||
(c)2024 Globaly. All rights reserved. |
|
||||
<a href="#">Privacy Policy</a>
|
||||
</div>
|
||||
</footer>
|
||||
|
||||
<script>
|
||||
// Get the button
|
||||
let mybutton = document.getElementById("scrollToTopBtn");
|
||||
|
||||
window.onscroll = function() {scrollFunction()};
|
||||
|
||||
function scrollFunction() {
|
||||
if (document.body.scrollTop > 20 || document.documentElement.scrollTop > 20) {
|
||||
mybutton.style.display = "block";
|
||||
} else {
|
||||
mybutton.style.display = "none";
|
||||
}
|
||||
}
|
||||
|
||||
// When the user clicks on the button, scroll to the top of the document
|
||||
function topFunction() {
|
||||
document.body.scrollTop = 0;
|
||||
document.documentElement.scrollTop = 0;
|
||||
}
|
||||
</script>
|
||||
|
||||
<script src="https://code.jquery.com/jquery-3.2.1.slim.min.js" integrity="sha384-KJ3o2DKtIkvYIK3UENzmM7KCkRr/rE9/Qpg6aAZGJwFDMVNA/GpGFF93hXpG5KkN" crossorigin="anonymous"></script>
|
||||
<script src="https://cdn.jsdelivr.net/npm/popper.js@1.12.9/dist/umd/popper.min.js" integrity="sha384-ApNbgh9B+Y1QKtv3Rn7W3mgPxhU9K/ScQsAP7hUibX39j7fakFPskvXusvfa0b4Q" crossorigin="anonymous"></script>
|
||||
|
||||
Reference in New Issue
Block a user