partially implemented todo tracker

This commit is contained in:
2025-04-20 17:05:41 -06:00
parent 9e47110758
commit ab30859446
29 changed files with 546 additions and 157 deletions
+5
View File
@@ -20,6 +20,11 @@ if (!isset($_SESSION['initialized'])) {
unset($_POST['theme']);
}
define('owner', 1);
define('admin', 2);
define('contributor', 3);
define('reader', 4);
// Update the database and cookies to keep the user logged in.
if (isset($_SESSION['user_id'])) {
$conn = get_connection();