fixed placeholder image path

This commit is contained in:
overplayed 2025-03-16 00:24:01 -04:00
parent 5a05df9259
commit ebf338c6d1
2 changed files with 1 additions and 1 deletions

Binary file not shown.

After

Width:  |  Height:  |  Size: 47 KiB

View File

@ -26,7 +26,7 @@
<!-- Board Member Profile Image (Only shown if the user is a board member) -->
<?php if (!empty($_SESSION['is_board_member']) && $_SESSION['is_board_member'] == 1): ?>
<div class="text-center mb-3">
<img src="img/board-member-placeholder.png" alt="Board Member" style="max-height: 120px; border-radius: 50%;">
<img src="assets/img/board-member-placeholder.png" alt="Board Member" style="max-height: 120px; border-radius: 50%;">
</div>
<?php endif; ?>