Skip to content

Commit

Permalink
Added button referencing the CPP map and added profile labelling to a…
Browse files Browse the repository at this point in the history
…ll pages
  • Loading branch information
JBicera committed Nov 27, 2023
1 parent 9c58c81 commit 4c39ed3
Show file tree
Hide file tree
Showing 4 changed files with 23 additions and 15 deletions.
3 changes: 2 additions & 1 deletion Project_Files/FinderKeeper/templates/FinderKeeper/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -91,7 +91,8 @@
<div class="navbar">
<a href="/">Home Page</a>
<a href = "https://github.com/Big-O-Inc/ScheduleFinder" target="_blank">GitHub</a>
<a href="./settings">Settings</a>
<a href ="./settings">Settings</a>
<a href = "https://www.cpp.edu/maps/" target = "_blank">Map</a>
<a href="./schedule">Schedule</a>
<a href="./login">Login</a>
<a href="./signup">Sign Up</a>
Expand Down
12 changes: 7 additions & 5 deletions Project_Files/FinderKeeper/templates/FinderKeeper/login.html
Original file line number Diff line number Diff line change
Expand Up @@ -115,14 +115,16 @@
<a href="/">Home Page</a>
<a href = "https://github.com/Big-O-Inc/ScheduleFinder" target="_blank">GitHub</a>
<a href="#settings">Settings</a>
<a href = "https://www.cpp.edu/maps/" target = "_blank">Map</a>
<a href="./schedule">Schedule</a>
<a href="./login">Login</a>
<a href="./signup">Sign Up</a>
<div class="profile-container">
<span class="profile-info">Username123</span>
{%load static%}
<img class="profile-icon" src="{% static "images\profile-icon.png" %}" alt="Profile Icon">
</div>
{% if user.is_authenticated %}
<div class="profile-container">
<span class="profile-info">{{ user.username }}</span>
<img class="profile-icon" src="{% static 'images/profile-icon.png' %}" alt="Profile Icon">
</div>
{% endif %}
</div>
<div class="container">
<div class="logo-container">
Expand Down
11 changes: 7 additions & 4 deletions Project_Files/FinderKeeper/templates/FinderKeeper/settings.html
Original file line number Diff line number Diff line change
Expand Up @@ -113,12 +113,15 @@
<a href="/">Home Page</a>
<a href="https://github.com/Big-O-Inc/ScheduleFinder" target="_blank">GitHub</a>
<a href="#settings">Settings</a>
<a href = "https://www.cpp.edu/maps/" target = "_blank">Map</a>
<a href="./schedule">Schedule</a>
<a href="./login">Login</a>
<div class="profile-container">
<span class="profile-info">Username123</span>
<img class="profile-icon" src="{% static 'images/profile-icon.png' %}" alt="Profile Icon">
</div>
{% if user.is_authenticated %}
<div class="profile-container">
<span class="profile-info">{{ user.username }}</span>
<img class="profile-icon" src="{% static 'images/profile-icon.png' %}" alt="Profile Icon">
</div>
{% endif %}
</div>
<div class="container">
<div class="logo-container">
Expand Down
12 changes: 7 additions & 5 deletions Project_Files/FinderKeeper/templates/FinderKeeper/signup.html
Original file line number Diff line number Diff line change
Expand Up @@ -117,14 +117,16 @@
<a href="/">Home Page</a>
<a href = "https://github.com/Big-O-Inc/ScheduleFinder" target="_blank">GitHub</a>
<a href="#settings">Settings</a>
<a href = "https://www.cpp.edu/maps/" target = "_blank">Map</a>
<a href="./schedule">Schedule</a>
<a href="./login">Login</a>
<a href="./signup">Sign Up</a>
<div class="profile-container">
<span class="profile-info">Username123</span>
{%load static%}
<img class="profile-icon" src="{% static "images\profile-icon.png" %}" alt="Profile Icon">
</div>
{% if user.is_authenticated %}
<div class="profile-container">
<span class="profile-info">{{ user.username }}</span>
<img class="profile-icon" src="{% static 'images/profile-icon.png' %}" alt="Profile Icon">
</div>
{% endif %}
</div>
<div class="container">
<div class="logo-container">
Expand Down

0 comments on commit 4c39ed3

Please sign in to comment.