Skip to content

Commit

Permalink
Update on file path
Browse files Browse the repository at this point in the history
  • Loading branch information
JerelHJ committed Feb 4, 2024
1 parent 5f3b0bc commit afea282
Show file tree
Hide file tree
Showing 8 changed files with 9 additions and 172 deletions.
2 changes: 1 addition & 1 deletion .vscode/settings.json
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
{
"open-php-html-js-in-browser.selectedBrowser": "Edge",
"open-php-html-js-in-browser.selectedBrowser": "Chrome",
"open-php-html-js-in-browser.documentRootFolder": "C:\\xampp\\htdocs",
"open-php-html-js-in-browser.urlToOpen": "custom",
"open-php-html-js-in-browser.customHost": "localhost:8081"
Expand Down
Binary file modified Images/Individual_Plots/plot_SecGuardID_1.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
4 changes: 2 additions & 2 deletions about.html
Original file line number Diff line number Diff line change
Expand Up @@ -15,13 +15,13 @@
<body>
<section class="sub-header">
<nav>
<a href="index.php"><img src="Images/SEER (Name Ver).png"></a>
<a href="index.html"><img src="Images/SEER (Name Ver).png"></a>
<div class="nav-links">
<ul class="nav-links">
<li><a href="index.html">HOME</a></li>
<li><a href="about.html">ABOUT</a></li>
<li><a href="contact.html">CONTACT</a></li>
<li><a href="login.html">LOGIN</a></li>
<li><a href="login.html">LOG OUT</a></li>
</a>
</ul>
</div>
Expand Down
93 changes: 0 additions & 93 deletions about.php

This file was deleted.

3 changes: 2 additions & 1 deletion checkLogin.php
Original file line number Diff line number Diff line change
Expand Up @@ -19,11 +19,12 @@
$_SESSION["LoginID"] = $row["LoginID"];

//Redirect to home page
header("Location: index.php");
header("Location: index.html");
exit;
}
else {
echo "<h3 style='color:red'> Invalid Login Credentials</h3>";
}
$conn->close();

?>
6 changes: 3 additions & 3 deletions index.html
Original file line number Diff line number Diff line change
Expand Up @@ -19,13 +19,13 @@
<body>
<section class="header">
<nav>
<a href="index.php"><img src="Images/SEER (Name Ver).png"></a>
<a href="index.html"><img src="Images/SEER (Name Ver).png"></a>
<div class="nav-links">
<ul>
<li><a href="index.html">HOME</a></li>
<li><a href="about.html">ABOUT</a></li>
<li><a href="contact.html">CONTACT</a></li>
<li><a href="login.html">LOGIN</a></li>
<li><a href="login.html">LOG OUT</a></li>
</ul>
</div>
</nav>
Expand All @@ -39,7 +39,7 @@ <h2>Pathway Tracker</h2><br>
- Security Guard's pathway -
</p><br>
<p>
<img src="Images\Individual_Plots\plot_SecGuardID_1.png" alt="Image">
<img src="Images\Individual_Plots\plot_SecGuardID_1.png" alt="Image">
<img src="Images\Individual_Plots\plot_Ideal.png" alt="Image">
</p>
<button onclick="runSeer()"> Run Seer </button>
Expand Down
71 changes: 0 additions & 71 deletions index.php

This file was deleted.

2 changes: 1 addition & 1 deletion python/seer2.py
Original file line number Diff line number Diff line change
Expand Up @@ -104,7 +104,7 @@ def image_spoof(self, tile):
ax1.plot(secguard_df['Longitude'].iloc[index], secguard_df['Latitude'].iloc[index], markersize=10,
marker='o', linestyle='', color=floor_color, transform=ccrs.PlateCarree(), label='GPS Point')

plt.pause(0.5) # Adjust the pause duration
plt.pause(0.1) # Adjust the pause duration

# Create a legend
handles = []
Expand Down

0 comments on commit afea282

Please sign in to comment.