diff --git a/New_APIs/Attendance_API/.eslintrc.json b/New_APIs/Attendance_Portal_API/.eslintrc.json similarity index 100% rename from New_APIs/Attendance_API/.eslintrc.json rename to New_APIs/Attendance_Portal_API/.eslintrc.json diff --git a/New_APIs/Attendance_API/.gitignore b/New_APIs/Attendance_Portal_API/.gitignore similarity index 100% rename from New_APIs/Attendance_API/.gitignore rename to New_APIs/Attendance_Portal_API/.gitignore diff --git a/New_APIs/Attendance_API/.prettierrc b/New_APIs/Attendance_Portal_API/.prettierrc similarity index 100% rename from New_APIs/Attendance_API/.prettierrc rename to New_APIs/Attendance_Portal_API/.prettierrc diff --git a/New_APIs/Attendance_API/README.md b/New_APIs/Attendance_Portal_API/README.md similarity index 100% rename from New_APIs/Attendance_API/README.md rename to New_APIs/Attendance_Portal_API/README.md diff --git a/New_APIs/Attendance_API/api/index.ts b/New_APIs/Attendance_Portal_API/api/index.ts similarity index 100% rename from New_APIs/Attendance_API/api/index.ts rename to New_APIs/Attendance_Portal_API/api/index.ts diff --git a/New_APIs/Attendance_API/package-lock.json b/New_APIs/Attendance_Portal_API/package-lock.json similarity index 100% rename from New_APIs/Attendance_API/package-lock.json rename to New_APIs/Attendance_Portal_API/package-lock.json diff --git a/New_APIs/Attendance_API/package.json b/New_APIs/Attendance_Portal_API/package.json similarity index 100% rename from New_APIs/Attendance_API/package.json rename to New_APIs/Attendance_Portal_API/package.json diff --git a/New_APIs/Attendance_API/public/.gitkeep b/New_APIs/Attendance_Portal_API/public/.gitkeep similarity index 100% rename from New_APIs/Attendance_API/public/.gitkeep rename to New_APIs/Attendance_Portal_API/public/.gitkeep diff --git a/New_APIs/Attendance_API/src/config/config.ts b/New_APIs/Attendance_Portal_API/src/config/config.ts similarity index 100% rename from New_APIs/Attendance_API/src/config/config.ts rename to New_APIs/Attendance_Portal_API/src/config/config.ts diff --git a/New_APIs/Attendance_API/src/controllers/attendanceController.ts b/New_APIs/Attendance_Portal_API/src/controllers/attendanceController.ts similarity index 100% rename from New_APIs/Attendance_API/src/controllers/attendanceController.ts rename to New_APIs/Attendance_Portal_API/src/controllers/attendanceController.ts diff --git a/New_APIs/Attendance_API/src/controllers/authController.ts b/New_APIs/Attendance_Portal_API/src/controllers/authController.ts similarity index 100% rename from New_APIs/Attendance_API/src/controllers/authController.ts rename to New_APIs/Attendance_Portal_API/src/controllers/authController.ts diff --git a/New_APIs/Attendance_API/src/controllers/userController.ts b/New_APIs/Attendance_Portal_API/src/controllers/userController.ts similarity index 100% rename from New_APIs/Attendance_API/src/controllers/userController.ts rename to New_APIs/Attendance_Portal_API/src/controllers/userController.ts diff --git a/New_APIs/Attendance_API/src/database/connectDb.ts b/New_APIs/Attendance_Portal_API/src/database/connectDb.ts similarity index 100% rename from New_APIs/Attendance_API/src/database/connectDb.ts rename to New_APIs/Attendance_Portal_API/src/database/connectDb.ts diff --git a/New_APIs/Attendance_API/src/index.ts b/New_APIs/Attendance_Portal_API/src/index.ts similarity index 100% rename from New_APIs/Attendance_API/src/index.ts rename to New_APIs/Attendance_Portal_API/src/index.ts diff --git a/New_APIs/Attendance_API/src/interfaces/attendanceInterface.ts b/New_APIs/Attendance_Portal_API/src/interfaces/attendanceInterface.ts similarity index 100% rename from New_APIs/Attendance_API/src/interfaces/attendanceInterface.ts rename to New_APIs/Attendance_Portal_API/src/interfaces/attendanceInterface.ts diff --git a/New_APIs/Attendance_API/src/interfaces/tokenInterface.ts b/New_APIs/Attendance_Portal_API/src/interfaces/tokenInterface.ts similarity index 100% rename from New_APIs/Attendance_API/src/interfaces/tokenInterface.ts rename to New_APIs/Attendance_Portal_API/src/interfaces/tokenInterface.ts diff --git a/New_APIs/Attendance_API/src/interfaces/userInterface.ts b/New_APIs/Attendance_Portal_API/src/interfaces/userInterface.ts similarity index 100% rename from New_APIs/Attendance_API/src/interfaces/userInterface.ts rename to New_APIs/Attendance_Portal_API/src/interfaces/userInterface.ts diff --git a/New_APIs/Attendance_API/src/middleware/errorMiddleware.ts b/New_APIs/Attendance_Portal_API/src/middleware/errorMiddleware.ts similarity index 100% rename from New_APIs/Attendance_API/src/middleware/errorMiddleware.ts rename to New_APIs/Attendance_Portal_API/src/middleware/errorMiddleware.ts diff --git a/New_APIs/Attendance_API/src/middleware/middleware.ts b/New_APIs/Attendance_Portal_API/src/middleware/middleware.ts similarity index 100% rename from New_APIs/Attendance_API/src/middleware/middleware.ts rename to New_APIs/Attendance_Portal_API/src/middleware/middleware.ts diff --git a/New_APIs/Attendance_API/src/models/attendanceSchema.ts b/New_APIs/Attendance_Portal_API/src/models/attendanceSchema.ts similarity index 100% rename from New_APIs/Attendance_API/src/models/attendanceSchema.ts rename to New_APIs/Attendance_Portal_API/src/models/attendanceSchema.ts diff --git a/New_APIs/Attendance_API/src/models/userSchema.ts b/New_APIs/Attendance_Portal_API/src/models/userSchema.ts similarity index 100% rename from New_APIs/Attendance_API/src/models/userSchema.ts rename to New_APIs/Attendance_Portal_API/src/models/userSchema.ts diff --git a/New_APIs/Attendance_API/src/routes/attendanceRoutes.ts b/New_APIs/Attendance_Portal_API/src/routes/attendanceRoutes.ts similarity index 100% rename from New_APIs/Attendance_API/src/routes/attendanceRoutes.ts rename to New_APIs/Attendance_Portal_API/src/routes/attendanceRoutes.ts diff --git a/New_APIs/Attendance_API/src/routes/authRoutes.ts b/New_APIs/Attendance_Portal_API/src/routes/authRoutes.ts similarity index 100% rename from New_APIs/Attendance_API/src/routes/authRoutes.ts rename to New_APIs/Attendance_Portal_API/src/routes/authRoutes.ts diff --git a/New_APIs/Attendance_API/src/routes/userRoutes.ts b/New_APIs/Attendance_Portal_API/src/routes/userRoutes.ts similarity index 100% rename from New_APIs/Attendance_API/src/routes/userRoutes.ts rename to New_APIs/Attendance_Portal_API/src/routes/userRoutes.ts diff --git a/New_APIs/Attendance_API/src/util/catchAsync.ts b/New_APIs/Attendance_Portal_API/src/util/catchAsync.ts similarity index 100% rename from New_APIs/Attendance_API/src/util/catchAsync.ts rename to New_APIs/Attendance_Portal_API/src/util/catchAsync.ts diff --git a/New_APIs/Attendance_API/src/util/checkError.ts b/New_APIs/Attendance_Portal_API/src/util/checkError.ts similarity index 100% rename from New_APIs/Attendance_API/src/util/checkError.ts rename to New_APIs/Attendance_Portal_API/src/util/checkError.ts diff --git a/New_APIs/Attendance_API/src/util/utils.ts b/New_APIs/Attendance_Portal_API/src/util/utils.ts similarity index 100% rename from New_APIs/Attendance_API/src/util/utils.ts rename to New_APIs/Attendance_Portal_API/src/util/utils.ts diff --git a/New_APIs/Attendance_API/tsconfig.json b/New_APIs/Attendance_Portal_API/tsconfig.json similarity index 100% rename from New_APIs/Attendance_API/tsconfig.json rename to New_APIs/Attendance_Portal_API/tsconfig.json diff --git a/New_APIs/Attendance_API/vercel.json b/New_APIs/Attendance_Portal_API/vercel.json similarity index 100% rename from New_APIs/Attendance_API/vercel.json rename to New_APIs/Attendance_Portal_API/vercel.json