Initial commit

This commit is contained in:
root
2025-12-23 13:18:58 +02:00
commit 2ef7528ee9
36 changed files with 5983 additions and 0 deletions

9
public/js/admin.js Normal file
View File

@@ -0,0 +1,9 @@
(function($){
"use strict";
$(function(){
$(document).on("click","[data-confirm]",function(e){
const msg = $(this).data("confirm") || "Are you sure?";
if(!confirm(msg)) e.preventDefault();
});
});
})(jQuery);