diff options
author | lonkaars <loek@pipeframe.xyz> | 2023-05-13 15:36:20 +0200 |
---|---|---|
committer | lonkaars <loek@pipeframe.xyz> | 2023-05-13 15:36:20 +0200 |
commit | ed0594f8f73c6eee8c6eca6ecf6208952ea26cdc (patch) | |
tree | 188fb61811a67a9f3d69e7429e45e9b6fa198237 /public/admin-category.php | |
parent | d99d91293fe9e9ad683bbd079848df4031f0a77a (diff) |
add products working (no image upload working yet)
Diffstat (limited to 'public/admin-category.php')
-rw-r--r-- | public/admin-category.php | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/public/admin-category.php b/public/admin-category.php index d65fc9e..a899b00 100644 --- a/public/admin-category.php +++ b/public/admin-category.php @@ -1,14 +1,16 @@ <!DOCTYPE html> <?php require "../lib/login.php"; ?> +<?php if_privileged(PRIVILEGE_ADMIN, "/") ?> <html> <head> <?php include 'head.php' ?> - <title>super secret admin page</title> + <title>categorie toevoegen</title> </head> <body> <?php include 'navbar.php' ?> <div class="main limwidth"> - <h2>admin</h2> + <h2>categorie toevoegen</h2> + </div> <?php include 'footer.php' ?> </body> |