Add menu and list page style

This commit is contained in:
Yang Li
2025-04-23 16:26:33 -04:00
parent 1d1a5a09bb
commit fb3bd27a15
19 changed files with 629 additions and 257 deletions

View File

@@ -151,10 +151,10 @@ app.get('/medical/events/list', function (req,res) {
app.get('/medical/events', function (req,res) {
res.sendFile(path + "index.html");
});
app.get('/medical/events/request', function (req,res) {
app.get('/medical/event-request', function (req,res) {
res.sendFile(path + "index.html");
});
app.get('/medical/events/request/list', function (req,res) {
app.get('/medical/event-request/list', function (req,res) {
res.sendFile(path + "index.html");
});
app.get('/medical/events/edit/:id', function (req,res) {