Skip to content

Commit

Permalink
Merge pull request #58 from sainmas/main
Browse files Browse the repository at this point in the history
Finishing touches on Sprint4
  • Loading branch information
sainmas authored Mar 5, 2024
2 parents 07da48b + d8c63bc commit 29fd1ef
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 6 deletions.
3 changes: 0 additions & 3 deletions index.php
Original file line number Diff line number Diff line change
Expand Up @@ -204,9 +204,6 @@
createAppReminders($appReminders);
?>
</div>
<div class="col pt-5 d-flex justify-content-center" id="update-account-container">
<button id="update-acc-btn" class="submit-btn"><i class="fa-solid fa-gear px-1"></i>Update Account</button>
</div>
</div>
</div>
<div class="row welcome-info">
Expand Down
8 changes: 7 additions & 1 deletion php/admin_announcement_submit.php
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,13 @@
<?php
session_start();
$_SESSION['location'] = '../';
include '../php/nav_bar.php'
include '../php/nav_bar.php';

global $db_location;
global $cnxn;

include '../db_picker.php';
include $db_location;

?>
<main>
Expand Down
4 changes: 2 additions & 2 deletions styles/styles.css
Original file line number Diff line number Diff line change
Expand Up @@ -473,15 +473,15 @@ table td {
background-color: #033a94;
}

.app-list-item .btn-update:hover, .user-list-item .btn-update:hover {
.app-list-item .btn-update:hover, .user-list-item .btn-update:hover, .admin-announcement .btn-update:hover {
background-color: #006225;
}

.btn-delete, .modal-delete {
background-color: #d24747;
}

.app-list-item .btn-delete:hover, .user-list-item .btn-delete:hover, .modal-delete:hover{
.app-list-item .btn-delete:hover, .user-list-item .btn-delete:hover, .modal-delete:hover, .admin-announcement .btn-delete:hover{
background-color: #b42c2c;
}

Expand Down

0 comments on commit 29fd1ef

Please sign in to comment.