Additional code clean up and login page stylizations

This commit is contained in:
Lucas Patenaude
2024-04-10 02:16:31 -06:00
parent dc360425ba
commit 273d5c3d9d
5 changed files with 38 additions and 24 deletions

View File

@@ -41,7 +41,7 @@
</ul>
</div>
<div id="user" class="d-sm-flex">
<img src="img/navigation-bar/user.png" alt="Your Image" class="img-fluid" style="width: 30px;">
<img src="img/navigation-bar/user.png" alt="Your Image" class="img-fluid">
</div>
</div>
</nav>
@@ -51,15 +51,5 @@
{{> navigation-bar/login}}
</div>
<!-- JavaScript to handle click event -->
<script>
$(document).ready(function() {
// When #user is clicked
$('#user').click(function() {
// Toggle the visibility of the login container
$('#login-container').toggle();
});
});
</script>