├── .env ├── .eslintrc.cjs ├── .gitignore ├── README.md ├── index.html ├── netlify.toml ├── package.json ├── src ├── App.jsx ├── components │ ├── Dashboard │ │ ├── AdminDashboard │ │ │ ├── CircleProgressBar.jsx │ │ │ ├── Dashboard.jsx │ │ │ ├── Dashboard.module.css │ │ │ ├── TaskDashboard.jsx │ │ │ ├── TaskDashboard.module.css │ │ │ ├── TicketAreaChart.jsx │ │ │ └── TicketsDashboard.jsx │ │ ├── Dashboard Cards │ │ │ ├── ApprovedTickets.jsx │ │ │ ├── PendingTickets.jsx │ │ │ ├── RessolvedTickets.jsx │ │ │ └── TicketsCard.jsx │ │ └── UserDashbooard │ │ │ ├── UserAreachart.jsx │ │ │ ├── UserDashboard.jsx │ │ │ ├── UserDataChart.jsx │ │ │ ├── UserTaskDashboard.jsx │ │ │ ├── UserTicketsDashoard.jsx │ │ │ └── userDashboard.module.css │ ├── Spiner │ │ └── Spiner.jsx │ ├── common │ │ └── TicketTile.jsx │ ├── context │ │ └── ContextProvider.jsx │ ├── hooks │ │ └── useLogout.jsx │ ├── slider │ │ ├── Slider.jsx │ │ └── Slider.module.css │ └── utils │ │ ├── ApiService.jsx │ │ ├── Sipnners.jsx │ │ └── Status.jsx ├── index.css ├── main.jsx ├── pages │ ├── Password │ │ ├── ForgotPassword.jsx │ │ ├── Resetpassword.jsx │ │ ├── frogot.module.css │ │ └── resetPassword.module.css │ ├── Signup │ │ ├── Signup.jsx │ │ └── signup.module.css │ ├── TASK │ │ ├── EditTaskForm.jsx │ │ ├── SubmittedTaskPage.jsx │ │ ├── Task.jsx │ │ ├── TaskForm.jsx │ │ ├── TaskList.jsx │ │ ├── submittedtask.module.css │ │ └── task.module.css │ ├── Tickets │ │ ├── Create.jsx │ │ └── Tickets.jsx │ ├── User Task │ │ ├── TaskList.jsx │ │ ├── TaskPage.jsx │ │ ├── TaskSubmissionForm.jsx │ │ └── task.module.css │ ├── Users │ │ ├── Details.jsx │ │ ├── Edit.jsx │ │ ├── Home.jsx │ │ └── Register.jsx │ └── signin │ │ ├── SignIn.jsx │ │ └── signin.module.css ├── public │ ├── man.png │ └── vite.svg └── routes │ └── AppRouters.jsx └── vite.config.js /.env: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarishVinayagamoorthy/CRM-MERN/HEAD/.env -------------------------------------------------------------------------------- /.eslintrc.cjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarishVinayagamoorthy/CRM-MERN/HEAD/.eslintrc.cjs -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarishVinayagamoorthy/CRM-MERN/HEAD/.gitignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarishVinayagamoorthy/CRM-MERN/HEAD/README.md -------------------------------------------------------------------------------- /index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarishVinayagamoorthy/CRM-MERN/HEAD/index.html -------------------------------------------------------------------------------- /netlify.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarishVinayagamoorthy/CRM-MERN/HEAD/netlify.toml -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarishVinayagamoorthy/CRM-MERN/HEAD/package.json -------------------------------------------------------------------------------- /src/App.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarishVinayagamoorthy/CRM-MERN/HEAD/src/App.jsx -------------------------------------------------------------------------------- /src/components/Dashboard/AdminDashboard/CircleProgressBar.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarishVinayagamoorthy/CRM-MERN/HEAD/src/components/Dashboard/AdminDashboard/CircleProgressBar.jsx -------------------------------------------------------------------------------- /src/components/Dashboard/AdminDashboard/Dashboard.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarishVinayagamoorthy/CRM-MERN/HEAD/src/components/Dashboard/AdminDashboard/Dashboard.jsx -------------------------------------------------------------------------------- /src/components/Dashboard/AdminDashboard/Dashboard.module.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarishVinayagamoorthy/CRM-MERN/HEAD/src/components/Dashboard/AdminDashboard/Dashboard.module.css -------------------------------------------------------------------------------- /src/components/Dashboard/AdminDashboard/TaskDashboard.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarishVinayagamoorthy/CRM-MERN/HEAD/src/components/Dashboard/AdminDashboard/TaskDashboard.jsx -------------------------------------------------------------------------------- /src/components/Dashboard/AdminDashboard/TaskDashboard.module.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarishVinayagamoorthy/CRM-MERN/HEAD/src/components/Dashboard/AdminDashboard/TaskDashboard.module.css -------------------------------------------------------------------------------- /src/components/Dashboard/AdminDashboard/TicketAreaChart.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarishVinayagamoorthy/CRM-MERN/HEAD/src/components/Dashboard/AdminDashboard/TicketAreaChart.jsx -------------------------------------------------------------------------------- /src/components/Dashboard/AdminDashboard/TicketsDashboard.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarishVinayagamoorthy/CRM-MERN/HEAD/src/components/Dashboard/AdminDashboard/TicketsDashboard.jsx -------------------------------------------------------------------------------- /src/components/Dashboard/Dashboard Cards/ApprovedTickets.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarishVinayagamoorthy/CRM-MERN/HEAD/src/components/Dashboard/Dashboard Cards/ApprovedTickets.jsx -------------------------------------------------------------------------------- /src/components/Dashboard/Dashboard Cards/PendingTickets.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarishVinayagamoorthy/CRM-MERN/HEAD/src/components/Dashboard/Dashboard Cards/PendingTickets.jsx -------------------------------------------------------------------------------- /src/components/Dashboard/Dashboard Cards/RessolvedTickets.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarishVinayagamoorthy/CRM-MERN/HEAD/src/components/Dashboard/Dashboard Cards/RessolvedTickets.jsx -------------------------------------------------------------------------------- /src/components/Dashboard/Dashboard Cards/TicketsCard.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarishVinayagamoorthy/CRM-MERN/HEAD/src/components/Dashboard/Dashboard Cards/TicketsCard.jsx -------------------------------------------------------------------------------- /src/components/Dashboard/UserDashbooard/UserAreachart.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarishVinayagamoorthy/CRM-MERN/HEAD/src/components/Dashboard/UserDashbooard/UserAreachart.jsx -------------------------------------------------------------------------------- /src/components/Dashboard/UserDashbooard/UserDashboard.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarishVinayagamoorthy/CRM-MERN/HEAD/src/components/Dashboard/UserDashbooard/UserDashboard.jsx -------------------------------------------------------------------------------- /src/components/Dashboard/UserDashbooard/UserDataChart.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarishVinayagamoorthy/CRM-MERN/HEAD/src/components/Dashboard/UserDashbooard/UserDataChart.jsx -------------------------------------------------------------------------------- /src/components/Dashboard/UserDashbooard/UserTaskDashboard.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarishVinayagamoorthy/CRM-MERN/HEAD/src/components/Dashboard/UserDashbooard/UserTaskDashboard.jsx -------------------------------------------------------------------------------- /src/components/Dashboard/UserDashbooard/UserTicketsDashoard.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarishVinayagamoorthy/CRM-MERN/HEAD/src/components/Dashboard/UserDashbooard/UserTicketsDashoard.jsx -------------------------------------------------------------------------------- /src/components/Dashboard/UserDashbooard/userDashboard.module.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarishVinayagamoorthy/CRM-MERN/HEAD/src/components/Dashboard/UserDashbooard/userDashboard.module.css -------------------------------------------------------------------------------- /src/components/Spiner/Spiner.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarishVinayagamoorthy/CRM-MERN/HEAD/src/components/Spiner/Spiner.jsx -------------------------------------------------------------------------------- /src/components/common/TicketTile.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarishVinayagamoorthy/CRM-MERN/HEAD/src/components/common/TicketTile.jsx -------------------------------------------------------------------------------- /src/components/context/ContextProvider.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarishVinayagamoorthy/CRM-MERN/HEAD/src/components/context/ContextProvider.jsx -------------------------------------------------------------------------------- /src/components/hooks/useLogout.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarishVinayagamoorthy/CRM-MERN/HEAD/src/components/hooks/useLogout.jsx -------------------------------------------------------------------------------- /src/components/slider/Slider.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarishVinayagamoorthy/CRM-MERN/HEAD/src/components/slider/Slider.jsx -------------------------------------------------------------------------------- /src/components/slider/Slider.module.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarishVinayagamoorthy/CRM-MERN/HEAD/src/components/slider/Slider.module.css -------------------------------------------------------------------------------- /src/components/utils/ApiService.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarishVinayagamoorthy/CRM-MERN/HEAD/src/components/utils/ApiService.jsx -------------------------------------------------------------------------------- /src/components/utils/Sipnners.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarishVinayagamoorthy/CRM-MERN/HEAD/src/components/utils/Sipnners.jsx -------------------------------------------------------------------------------- /src/components/utils/Status.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarishVinayagamoorthy/CRM-MERN/HEAD/src/components/utils/Status.jsx -------------------------------------------------------------------------------- /src/index.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarishVinayagamoorthy/CRM-MERN/HEAD/src/index.css -------------------------------------------------------------------------------- /src/main.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarishVinayagamoorthy/CRM-MERN/HEAD/src/main.jsx -------------------------------------------------------------------------------- /src/pages/Password/ForgotPassword.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarishVinayagamoorthy/CRM-MERN/HEAD/src/pages/Password/ForgotPassword.jsx -------------------------------------------------------------------------------- /src/pages/Password/Resetpassword.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarishVinayagamoorthy/CRM-MERN/HEAD/src/pages/Password/Resetpassword.jsx -------------------------------------------------------------------------------- /src/pages/Password/frogot.module.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarishVinayagamoorthy/CRM-MERN/HEAD/src/pages/Password/frogot.module.css -------------------------------------------------------------------------------- /src/pages/Password/resetPassword.module.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarishVinayagamoorthy/CRM-MERN/HEAD/src/pages/Password/resetPassword.module.css -------------------------------------------------------------------------------- /src/pages/Signup/Signup.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarishVinayagamoorthy/CRM-MERN/HEAD/src/pages/Signup/Signup.jsx -------------------------------------------------------------------------------- /src/pages/Signup/signup.module.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarishVinayagamoorthy/CRM-MERN/HEAD/src/pages/Signup/signup.module.css -------------------------------------------------------------------------------- /src/pages/TASK/EditTaskForm.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarishVinayagamoorthy/CRM-MERN/HEAD/src/pages/TASK/EditTaskForm.jsx -------------------------------------------------------------------------------- /src/pages/TASK/SubmittedTaskPage.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarishVinayagamoorthy/CRM-MERN/HEAD/src/pages/TASK/SubmittedTaskPage.jsx -------------------------------------------------------------------------------- /src/pages/TASK/Task.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarishVinayagamoorthy/CRM-MERN/HEAD/src/pages/TASK/Task.jsx -------------------------------------------------------------------------------- /src/pages/TASK/TaskForm.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarishVinayagamoorthy/CRM-MERN/HEAD/src/pages/TASK/TaskForm.jsx -------------------------------------------------------------------------------- /src/pages/TASK/TaskList.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarishVinayagamoorthy/CRM-MERN/HEAD/src/pages/TASK/TaskList.jsx -------------------------------------------------------------------------------- /src/pages/TASK/submittedtask.module.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarishVinayagamoorthy/CRM-MERN/HEAD/src/pages/TASK/submittedtask.module.css -------------------------------------------------------------------------------- /src/pages/TASK/task.module.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarishVinayagamoorthy/CRM-MERN/HEAD/src/pages/TASK/task.module.css -------------------------------------------------------------------------------- /src/pages/Tickets/Create.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarishVinayagamoorthy/CRM-MERN/HEAD/src/pages/Tickets/Create.jsx -------------------------------------------------------------------------------- /src/pages/Tickets/Tickets.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarishVinayagamoorthy/CRM-MERN/HEAD/src/pages/Tickets/Tickets.jsx -------------------------------------------------------------------------------- /src/pages/User Task/TaskList.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarishVinayagamoorthy/CRM-MERN/HEAD/src/pages/User Task/TaskList.jsx -------------------------------------------------------------------------------- /src/pages/User Task/TaskPage.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarishVinayagamoorthy/CRM-MERN/HEAD/src/pages/User Task/TaskPage.jsx -------------------------------------------------------------------------------- /src/pages/User Task/TaskSubmissionForm.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarishVinayagamoorthy/CRM-MERN/HEAD/src/pages/User Task/TaskSubmissionForm.jsx -------------------------------------------------------------------------------- /src/pages/User Task/task.module.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarishVinayagamoorthy/CRM-MERN/HEAD/src/pages/User Task/task.module.css -------------------------------------------------------------------------------- /src/pages/Users/Details.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarishVinayagamoorthy/CRM-MERN/HEAD/src/pages/Users/Details.jsx -------------------------------------------------------------------------------- /src/pages/Users/Edit.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarishVinayagamoorthy/CRM-MERN/HEAD/src/pages/Users/Edit.jsx -------------------------------------------------------------------------------- /src/pages/Users/Home.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarishVinayagamoorthy/CRM-MERN/HEAD/src/pages/Users/Home.jsx -------------------------------------------------------------------------------- /src/pages/Users/Register.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarishVinayagamoorthy/CRM-MERN/HEAD/src/pages/Users/Register.jsx -------------------------------------------------------------------------------- /src/pages/signin/SignIn.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarishVinayagamoorthy/CRM-MERN/HEAD/src/pages/signin/SignIn.jsx -------------------------------------------------------------------------------- /src/pages/signin/signin.module.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarishVinayagamoorthy/CRM-MERN/HEAD/src/pages/signin/signin.module.css -------------------------------------------------------------------------------- /src/public/man.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarishVinayagamoorthy/CRM-MERN/HEAD/src/public/man.png -------------------------------------------------------------------------------- /src/public/vite.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarishVinayagamoorthy/CRM-MERN/HEAD/src/public/vite.svg -------------------------------------------------------------------------------- /src/routes/AppRouters.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarishVinayagamoorthy/CRM-MERN/HEAD/src/routes/AppRouters.jsx -------------------------------------------------------------------------------- /vite.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarishVinayagamoorthy/CRM-MERN/HEAD/vite.config.js --------------------------------------------------------------------------------