pop out and some minor changes

main
Grim0o5 6 months ago
parent cbceff1749
commit fa2468352e
  1. 6
      footer.php
  2. 2
      job_details.php
  3. 3
      register.php

@ -10,12 +10,12 @@
<footer> <footer>
<div class="quicklinks "> <div class="quicklinks ">
<ul> <ul>
<li><a href="#">About Us</a></li> <li><a href="aboutus">About Us</a></li>
<li><a href="#">Contact</a></li> <li><a href="contactus">Contact</a></li>
<li><a href="#">Privacy Policy</a></li> <li><a href="#">Privacy Policy</a></li>
</ul> </ul>
<ul> <ul>
<li><a href="#">Jobs</a></li> <li><a href="">Jobs</a></li>
<li><a href="#">Companies</a></li> <li><a href="#">Companies</a></li>
<li><a href="#">Support</a></li> <li><a href="#">Support</a></li>
</ul> </ul>

@ -3,7 +3,7 @@ session_start();
// Check if the user is logged in // Check if the user is logged in
if (!isset($_SESSION['email'])) { if (!isset($_SESSION['email'])) {
header("Location: login.php"); header("Location: login");
exit(); exit();
} }
// Check if seeker_id exists in the session // Check if seeker_id exists in the session

@ -116,7 +116,8 @@ if (isset($_POST['Login'])) {
header("Location: index"); header("Location: index");
exit(); exit();
} else { } else {
echo "Incorrect email or password."; echo "<script>alert('Incorrect email or password.'); window.location.href = 'login';</script>";
exit();
} }
} }
?> ?>
Loading…
Cancel
Save