├── .gitignore ├── Infographics └── Popular Languages.twb ├── LICENSE ├── README.md ├── client ├── .npmrc ├── package-lock.json ├── package.json ├── public │ ├── _redirects │ ├── icon │ │ └── favicon.png │ └── index.html └── src │ ├── App.js │ ├── components │ ├── Admin │ │ ├── Admin.css │ │ └── Admin.jsx │ ├── AdminHome │ │ ├── AddCourse.css │ │ ├── AddCourse.jsx │ │ ├── AddTrack.css │ │ ├── AddTrack.jsx │ │ ├── AdminHome.css │ │ ├── AdminHome.jsx │ │ ├── AdminTrack.css │ │ ├── AdminTrack.jsx │ │ ├── EditCourse.css │ │ ├── EditCourse.jsx │ │ ├── EditTrack.css │ │ └── EditTrack.jsx │ ├── Analytics │ │ ├── Analytics.css │ │ └── Analytics.jsx │ ├── Compete │ │ ├── Compete.css │ │ └── Compete.jsx │ ├── CourseHome │ │ ├── CourseHome.css │ │ └── CourseHome.jsx │ ├── Footer │ │ ├── Footer.css │ │ └── Footer.jsx │ ├── Home │ │ ├── About │ │ │ ├── About.css │ │ │ └── About.jsx │ │ ├── Category │ │ │ ├── Category.css │ │ │ └── Category.jsx │ │ ├── Home.css │ │ ├── Home.jsx │ │ ├── Navigation │ │ │ ├── Navigation.css │ │ │ └── Navigation.jsx │ │ └── Number │ │ │ ├── Number.css │ │ │ └── Number.jsx │ ├── Login │ │ ├── Login.css │ │ └── Login.jsx │ ├── Practice │ │ ├── Practice.css │ │ └── Practice.jsx │ ├── PreLoader │ │ ├── PreLoader.css │ │ └── PreLoader.jsx │ ├── Register │ │ ├── Register.css │ │ └── Register.jsx │ ├── TrackHome │ │ ├── TrackHome.css │ │ └── TrackHome.jsx │ ├── Tracks │ │ ├── Tracks.css │ │ └── Tracks.jsx │ ├── UserHome │ │ ├── UserHome.css │ │ └── UserHome.jsx │ └── UserNavBar │ │ ├── UserNavBar.css │ │ └── UserNavBar.jsx │ ├── images │ ├── about-image.jpg │ ├── auth-image.png │ ├── banner.png │ ├── icon.png │ ├── logo.png │ └── user.png │ └── index.js └── server ├── .gitignore ├── Procfile ├── index.js ├── models ├── admin.model.js ├── course.model.js ├── track.model.js ├── user.model.js └── user_course.model.js ├── package-lock.json ├── package.json └── routes ├── admin.js └── user.js /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aaditya1978/E-Learning-Platform/HEAD/.gitignore -------------------------------------------------------------------------------- /Infographics/Popular Languages.twb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aaditya1978/E-Learning-Platform/HEAD/Infographics/Popular Languages.twb -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aaditya1978/E-Learning-Platform/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aaditya1978/E-Learning-Platform/HEAD/README.md -------------------------------------------------------------------------------- /client/.npmrc: -------------------------------------------------------------------------------- 1 | legacy-peer-deps=true -------------------------------------------------------------------------------- /client/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aaditya1978/E-Learning-Platform/HEAD/client/package-lock.json -------------------------------------------------------------------------------- /client/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aaditya1978/E-Learning-Platform/HEAD/client/package.json -------------------------------------------------------------------------------- /client/public/_redirects: -------------------------------------------------------------------------------- 1 | /* /index.html 200 -------------------------------------------------------------------------------- /client/public/icon/favicon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aaditya1978/E-Learning-Platform/HEAD/client/public/icon/favicon.png -------------------------------------------------------------------------------- /client/public/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aaditya1978/E-Learning-Platform/HEAD/client/public/index.html -------------------------------------------------------------------------------- /client/src/App.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aaditya1978/E-Learning-Platform/HEAD/client/src/App.js -------------------------------------------------------------------------------- /client/src/components/Admin/Admin.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aaditya1978/E-Learning-Platform/HEAD/client/src/components/Admin/Admin.css -------------------------------------------------------------------------------- /client/src/components/Admin/Admin.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aaditya1978/E-Learning-Platform/HEAD/client/src/components/Admin/Admin.jsx -------------------------------------------------------------------------------- /client/src/components/AdminHome/AddCourse.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aaditya1978/E-Learning-Platform/HEAD/client/src/components/AdminHome/AddCourse.css -------------------------------------------------------------------------------- /client/src/components/AdminHome/AddCourse.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aaditya1978/E-Learning-Platform/HEAD/client/src/components/AdminHome/AddCourse.jsx -------------------------------------------------------------------------------- /client/src/components/AdminHome/AddTrack.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aaditya1978/E-Learning-Platform/HEAD/client/src/components/AdminHome/AddTrack.css -------------------------------------------------------------------------------- /client/src/components/AdminHome/AddTrack.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aaditya1978/E-Learning-Platform/HEAD/client/src/components/AdminHome/AddTrack.jsx -------------------------------------------------------------------------------- /client/src/components/AdminHome/AdminHome.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aaditya1978/E-Learning-Platform/HEAD/client/src/components/AdminHome/AdminHome.css -------------------------------------------------------------------------------- /client/src/components/AdminHome/AdminHome.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aaditya1978/E-Learning-Platform/HEAD/client/src/components/AdminHome/AdminHome.jsx -------------------------------------------------------------------------------- /client/src/components/AdminHome/AdminTrack.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aaditya1978/E-Learning-Platform/HEAD/client/src/components/AdminHome/AdminTrack.css -------------------------------------------------------------------------------- /client/src/components/AdminHome/AdminTrack.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aaditya1978/E-Learning-Platform/HEAD/client/src/components/AdminHome/AdminTrack.jsx -------------------------------------------------------------------------------- /client/src/components/AdminHome/EditCourse.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aaditya1978/E-Learning-Platform/HEAD/client/src/components/AdminHome/EditCourse.css -------------------------------------------------------------------------------- /client/src/components/AdminHome/EditCourse.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aaditya1978/E-Learning-Platform/HEAD/client/src/components/AdminHome/EditCourse.jsx -------------------------------------------------------------------------------- /client/src/components/AdminHome/EditTrack.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aaditya1978/E-Learning-Platform/HEAD/client/src/components/AdminHome/EditTrack.css -------------------------------------------------------------------------------- /client/src/components/AdminHome/EditTrack.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aaditya1978/E-Learning-Platform/HEAD/client/src/components/AdminHome/EditTrack.jsx -------------------------------------------------------------------------------- /client/src/components/Analytics/Analytics.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aaditya1978/E-Learning-Platform/HEAD/client/src/components/Analytics/Analytics.css -------------------------------------------------------------------------------- /client/src/components/Analytics/Analytics.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aaditya1978/E-Learning-Platform/HEAD/client/src/components/Analytics/Analytics.jsx -------------------------------------------------------------------------------- /client/src/components/Compete/Compete.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aaditya1978/E-Learning-Platform/HEAD/client/src/components/Compete/Compete.css -------------------------------------------------------------------------------- /client/src/components/Compete/Compete.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aaditya1978/E-Learning-Platform/HEAD/client/src/components/Compete/Compete.jsx -------------------------------------------------------------------------------- /client/src/components/CourseHome/CourseHome.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aaditya1978/E-Learning-Platform/HEAD/client/src/components/CourseHome/CourseHome.css -------------------------------------------------------------------------------- /client/src/components/CourseHome/CourseHome.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aaditya1978/E-Learning-Platform/HEAD/client/src/components/CourseHome/CourseHome.jsx -------------------------------------------------------------------------------- /client/src/components/Footer/Footer.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aaditya1978/E-Learning-Platform/HEAD/client/src/components/Footer/Footer.css -------------------------------------------------------------------------------- /client/src/components/Footer/Footer.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aaditya1978/E-Learning-Platform/HEAD/client/src/components/Footer/Footer.jsx -------------------------------------------------------------------------------- /client/src/components/Home/About/About.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aaditya1978/E-Learning-Platform/HEAD/client/src/components/Home/About/About.css -------------------------------------------------------------------------------- /client/src/components/Home/About/About.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aaditya1978/E-Learning-Platform/HEAD/client/src/components/Home/About/About.jsx -------------------------------------------------------------------------------- /client/src/components/Home/Category/Category.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aaditya1978/E-Learning-Platform/HEAD/client/src/components/Home/Category/Category.css -------------------------------------------------------------------------------- /client/src/components/Home/Category/Category.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aaditya1978/E-Learning-Platform/HEAD/client/src/components/Home/Category/Category.jsx -------------------------------------------------------------------------------- /client/src/components/Home/Home.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aaditya1978/E-Learning-Platform/HEAD/client/src/components/Home/Home.css -------------------------------------------------------------------------------- /client/src/components/Home/Home.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aaditya1978/E-Learning-Platform/HEAD/client/src/components/Home/Home.jsx -------------------------------------------------------------------------------- /client/src/components/Home/Navigation/Navigation.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aaditya1978/E-Learning-Platform/HEAD/client/src/components/Home/Navigation/Navigation.css -------------------------------------------------------------------------------- /client/src/components/Home/Navigation/Navigation.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aaditya1978/E-Learning-Platform/HEAD/client/src/components/Home/Navigation/Navigation.jsx -------------------------------------------------------------------------------- /client/src/components/Home/Number/Number.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aaditya1978/E-Learning-Platform/HEAD/client/src/components/Home/Number/Number.css -------------------------------------------------------------------------------- /client/src/components/Home/Number/Number.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aaditya1978/E-Learning-Platform/HEAD/client/src/components/Home/Number/Number.jsx -------------------------------------------------------------------------------- /client/src/components/Login/Login.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aaditya1978/E-Learning-Platform/HEAD/client/src/components/Login/Login.css -------------------------------------------------------------------------------- /client/src/components/Login/Login.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aaditya1978/E-Learning-Platform/HEAD/client/src/components/Login/Login.jsx -------------------------------------------------------------------------------- /client/src/components/Practice/Practice.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aaditya1978/E-Learning-Platform/HEAD/client/src/components/Practice/Practice.css -------------------------------------------------------------------------------- /client/src/components/Practice/Practice.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aaditya1978/E-Learning-Platform/HEAD/client/src/components/Practice/Practice.jsx -------------------------------------------------------------------------------- /client/src/components/PreLoader/PreLoader.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aaditya1978/E-Learning-Platform/HEAD/client/src/components/PreLoader/PreLoader.css -------------------------------------------------------------------------------- /client/src/components/PreLoader/PreLoader.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aaditya1978/E-Learning-Platform/HEAD/client/src/components/PreLoader/PreLoader.jsx -------------------------------------------------------------------------------- /client/src/components/Register/Register.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aaditya1978/E-Learning-Platform/HEAD/client/src/components/Register/Register.css -------------------------------------------------------------------------------- /client/src/components/Register/Register.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aaditya1978/E-Learning-Platform/HEAD/client/src/components/Register/Register.jsx -------------------------------------------------------------------------------- /client/src/components/TrackHome/TrackHome.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aaditya1978/E-Learning-Platform/HEAD/client/src/components/TrackHome/TrackHome.css -------------------------------------------------------------------------------- /client/src/components/TrackHome/TrackHome.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aaditya1978/E-Learning-Platform/HEAD/client/src/components/TrackHome/TrackHome.jsx -------------------------------------------------------------------------------- /client/src/components/Tracks/Tracks.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aaditya1978/E-Learning-Platform/HEAD/client/src/components/Tracks/Tracks.css -------------------------------------------------------------------------------- /client/src/components/Tracks/Tracks.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aaditya1978/E-Learning-Platform/HEAD/client/src/components/Tracks/Tracks.jsx -------------------------------------------------------------------------------- /client/src/components/UserHome/UserHome.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aaditya1978/E-Learning-Platform/HEAD/client/src/components/UserHome/UserHome.css -------------------------------------------------------------------------------- /client/src/components/UserHome/UserHome.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aaditya1978/E-Learning-Platform/HEAD/client/src/components/UserHome/UserHome.jsx -------------------------------------------------------------------------------- /client/src/components/UserNavBar/UserNavBar.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aaditya1978/E-Learning-Platform/HEAD/client/src/components/UserNavBar/UserNavBar.css -------------------------------------------------------------------------------- /client/src/components/UserNavBar/UserNavBar.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aaditya1978/E-Learning-Platform/HEAD/client/src/components/UserNavBar/UserNavBar.jsx -------------------------------------------------------------------------------- /client/src/images/about-image.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aaditya1978/E-Learning-Platform/HEAD/client/src/images/about-image.jpg -------------------------------------------------------------------------------- /client/src/images/auth-image.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aaditya1978/E-Learning-Platform/HEAD/client/src/images/auth-image.png -------------------------------------------------------------------------------- /client/src/images/banner.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aaditya1978/E-Learning-Platform/HEAD/client/src/images/banner.png -------------------------------------------------------------------------------- /client/src/images/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aaditya1978/E-Learning-Platform/HEAD/client/src/images/icon.png -------------------------------------------------------------------------------- /client/src/images/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aaditya1978/E-Learning-Platform/HEAD/client/src/images/logo.png -------------------------------------------------------------------------------- /client/src/images/user.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aaditya1978/E-Learning-Platform/HEAD/client/src/images/user.png -------------------------------------------------------------------------------- /client/src/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aaditya1978/E-Learning-Platform/HEAD/client/src/index.js -------------------------------------------------------------------------------- /server/.gitignore: -------------------------------------------------------------------------------- 1 | node_modules/ -------------------------------------------------------------------------------- /server/Procfile: -------------------------------------------------------------------------------- 1 | web: node index.js -------------------------------------------------------------------------------- /server/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aaditya1978/E-Learning-Platform/HEAD/server/index.js -------------------------------------------------------------------------------- /server/models/admin.model.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aaditya1978/E-Learning-Platform/HEAD/server/models/admin.model.js -------------------------------------------------------------------------------- /server/models/course.model.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aaditya1978/E-Learning-Platform/HEAD/server/models/course.model.js -------------------------------------------------------------------------------- /server/models/track.model.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aaditya1978/E-Learning-Platform/HEAD/server/models/track.model.js -------------------------------------------------------------------------------- /server/models/user.model.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aaditya1978/E-Learning-Platform/HEAD/server/models/user.model.js -------------------------------------------------------------------------------- /server/models/user_course.model.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aaditya1978/E-Learning-Platform/HEAD/server/models/user_course.model.js -------------------------------------------------------------------------------- /server/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aaditya1978/E-Learning-Platform/HEAD/server/package-lock.json -------------------------------------------------------------------------------- /server/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aaditya1978/E-Learning-Platform/HEAD/server/package.json -------------------------------------------------------------------------------- /server/routes/admin.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aaditya1978/E-Learning-Platform/HEAD/server/routes/admin.js -------------------------------------------------------------------------------- /server/routes/user.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aaditya1978/E-Learning-Platform/HEAD/server/routes/user.js --------------------------------------------------------------------------------