├── .gitignore ├── ENV_FORMAT.json ├── Folder_Structure.txt ├── README.md ├── assets ├── css │ ├── _header.css │ ├── hamburger-menu.css │ ├── home.css │ ├── jobs.css │ ├── layout.css │ ├── profile.css │ └── signup.css ├── images │ ├── background.jpg │ ├── empty-avatar.png │ ├── favicon.png │ ├── female-avatar.png │ ├── google-logo.png │ ├── logo.png │ └── male-avatar.png ├── js │ ├── _header.js │ ├── home.js │ ├── interview.js │ ├── jobs.js │ ├── layout.js │ ├── login.js │ ├── noty.js │ ├── signup.js │ ├── student.js │ ├── students-list.js │ └── update-profile.js └── scss │ ├── _header.scss │ ├── hamburger-menu.scss │ ├── home.scss │ ├── jobs.scss │ ├── layout.scss │ ├── profile.scss │ └── signup.scss ├── config ├── environment.js ├── middleware.js ├── mongoose.js ├── passport-google-oauth2-strategy.js ├── passport-local-strategy.js └── view-helpers.js ├── controllers ├── downloads_controller.js ├── home_controller.js ├── interviews_controllers.js ├── jobs_controller.js └── students_controller.js ├── gulpfile.js ├── index.js ├── models ├── batch.js ├── company.js ├── course.js ├── employee.js ├── enrolment.js ├── interview.js ├── result.js ├── score.js └── student.js ├── package.json ├── public ├── assets │ ├── css │ │ ├── _header-90211f54a0.css │ │ ├── hamburger-menu-d665fcecd6.css │ │ ├── home-00c02d275d.css │ │ ├── jobs-460d779703.css │ │ ├── layout-5406082cff.css │ │ ├── profile-dffe8b038b.css │ │ └── signup-f0d726f855.css │ ├── images │ │ ├── background-2921a09595.jpg │ │ ├── empty-avatar-c31da21ad1.png │ │ ├── favicon-695a0e19ec.png │ │ ├── female-avatar-b901f36c8d.png │ │ ├── google-logo-ecff37fa6e.png │ │ ├── logo-490d308aec.png │ │ └── male-avatar-10c18e1c5d.png │ ├── js │ │ ├── _header-810664029c.js │ │ ├── home-d41d8cd98f.js │ │ ├── interview-58c514125b.js │ │ ├── jobs-011d4f7726.js │ │ ├── layout-d41d8cd98f.js │ │ ├── login-0cba0fabf3.js │ │ ├── noty-90254c8416.js │ │ ├── signup-2836e32324.js │ │ ├── student-c02824bbbb.js │ │ ├── students-list-c8fc0845a5.js │ │ └── update-profile-3b283e2ef4.js │ └── rev-manifest.json └── rev-manifest.json ├── routes ├── downloads.js ├── home.js ├── index.js ├── interviews.js ├── jobs.js └── students.js ├── storage ├── json │ └── jobs.json └── sounds │ └── Ting.mp3 └── views ├── _header.ejs ├── _interview-accordion.ejs ├── _noty.ejs ├── _student-accordion.ejs ├── _student-list.ejs ├── home.ejs ├── job.ejs ├── layout.ejs ├── profile.ejs ├── signup.ejs └── templates.ejs /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ayush-Kanduri/Placement-Cell-Application/HEAD/.gitignore -------------------------------------------------------------------------------- /ENV_FORMAT.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ayush-Kanduri/Placement-Cell-Application/HEAD/ENV_FORMAT.json -------------------------------------------------------------------------------- /Folder_Structure.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ayush-Kanduri/Placement-Cell-Application/HEAD/Folder_Structure.txt -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ayush-Kanduri/Placement-Cell-Application/HEAD/README.md -------------------------------------------------------------------------------- /assets/css/_header.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ayush-Kanduri/Placement-Cell-Application/HEAD/assets/css/_header.css -------------------------------------------------------------------------------- /assets/css/hamburger-menu.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ayush-Kanduri/Placement-Cell-Application/HEAD/assets/css/hamburger-menu.css -------------------------------------------------------------------------------- /assets/css/home.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ayush-Kanduri/Placement-Cell-Application/HEAD/assets/css/home.css -------------------------------------------------------------------------------- /assets/css/jobs.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ayush-Kanduri/Placement-Cell-Application/HEAD/assets/css/jobs.css -------------------------------------------------------------------------------- /assets/css/layout.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ayush-Kanduri/Placement-Cell-Application/HEAD/assets/css/layout.css -------------------------------------------------------------------------------- /assets/css/profile.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ayush-Kanduri/Placement-Cell-Application/HEAD/assets/css/profile.css -------------------------------------------------------------------------------- /assets/css/signup.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ayush-Kanduri/Placement-Cell-Application/HEAD/assets/css/signup.css -------------------------------------------------------------------------------- /assets/images/background.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ayush-Kanduri/Placement-Cell-Application/HEAD/assets/images/background.jpg -------------------------------------------------------------------------------- /assets/images/empty-avatar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ayush-Kanduri/Placement-Cell-Application/HEAD/assets/images/empty-avatar.png -------------------------------------------------------------------------------- /assets/images/favicon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ayush-Kanduri/Placement-Cell-Application/HEAD/assets/images/favicon.png -------------------------------------------------------------------------------- /assets/images/female-avatar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ayush-Kanduri/Placement-Cell-Application/HEAD/assets/images/female-avatar.png -------------------------------------------------------------------------------- /assets/images/google-logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ayush-Kanduri/Placement-Cell-Application/HEAD/assets/images/google-logo.png -------------------------------------------------------------------------------- /assets/images/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ayush-Kanduri/Placement-Cell-Application/HEAD/assets/images/logo.png -------------------------------------------------------------------------------- /assets/images/male-avatar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ayush-Kanduri/Placement-Cell-Application/HEAD/assets/images/male-avatar.png -------------------------------------------------------------------------------- /assets/js/_header.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ayush-Kanduri/Placement-Cell-Application/HEAD/assets/js/_header.js -------------------------------------------------------------------------------- /assets/js/home.js: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /assets/js/interview.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ayush-Kanduri/Placement-Cell-Application/HEAD/assets/js/interview.js -------------------------------------------------------------------------------- /assets/js/jobs.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ayush-Kanduri/Placement-Cell-Application/HEAD/assets/js/jobs.js -------------------------------------------------------------------------------- /assets/js/layout.js: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /assets/js/login.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ayush-Kanduri/Placement-Cell-Application/HEAD/assets/js/login.js -------------------------------------------------------------------------------- /assets/js/noty.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ayush-Kanduri/Placement-Cell-Application/HEAD/assets/js/noty.js -------------------------------------------------------------------------------- /assets/js/signup.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ayush-Kanduri/Placement-Cell-Application/HEAD/assets/js/signup.js -------------------------------------------------------------------------------- /assets/js/student.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ayush-Kanduri/Placement-Cell-Application/HEAD/assets/js/student.js -------------------------------------------------------------------------------- /assets/js/students-list.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ayush-Kanduri/Placement-Cell-Application/HEAD/assets/js/students-list.js -------------------------------------------------------------------------------- /assets/js/update-profile.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ayush-Kanduri/Placement-Cell-Application/HEAD/assets/js/update-profile.js -------------------------------------------------------------------------------- /assets/scss/_header.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ayush-Kanduri/Placement-Cell-Application/HEAD/assets/scss/_header.scss -------------------------------------------------------------------------------- /assets/scss/hamburger-menu.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ayush-Kanduri/Placement-Cell-Application/HEAD/assets/scss/hamburger-menu.scss -------------------------------------------------------------------------------- /assets/scss/home.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ayush-Kanduri/Placement-Cell-Application/HEAD/assets/scss/home.scss -------------------------------------------------------------------------------- /assets/scss/jobs.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ayush-Kanduri/Placement-Cell-Application/HEAD/assets/scss/jobs.scss -------------------------------------------------------------------------------- /assets/scss/layout.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ayush-Kanduri/Placement-Cell-Application/HEAD/assets/scss/layout.scss -------------------------------------------------------------------------------- /assets/scss/profile.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ayush-Kanduri/Placement-Cell-Application/HEAD/assets/scss/profile.scss -------------------------------------------------------------------------------- /assets/scss/signup.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ayush-Kanduri/Placement-Cell-Application/HEAD/assets/scss/signup.scss -------------------------------------------------------------------------------- /config/environment.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ayush-Kanduri/Placement-Cell-Application/HEAD/config/environment.js -------------------------------------------------------------------------------- /config/middleware.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ayush-Kanduri/Placement-Cell-Application/HEAD/config/middleware.js -------------------------------------------------------------------------------- /config/mongoose.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ayush-Kanduri/Placement-Cell-Application/HEAD/config/mongoose.js -------------------------------------------------------------------------------- /config/passport-google-oauth2-strategy.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ayush-Kanduri/Placement-Cell-Application/HEAD/config/passport-google-oauth2-strategy.js -------------------------------------------------------------------------------- /config/passport-local-strategy.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ayush-Kanduri/Placement-Cell-Application/HEAD/config/passport-local-strategy.js -------------------------------------------------------------------------------- /config/view-helpers.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ayush-Kanduri/Placement-Cell-Application/HEAD/config/view-helpers.js -------------------------------------------------------------------------------- /controllers/downloads_controller.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ayush-Kanduri/Placement-Cell-Application/HEAD/controllers/downloads_controller.js -------------------------------------------------------------------------------- /controllers/home_controller.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ayush-Kanduri/Placement-Cell-Application/HEAD/controllers/home_controller.js -------------------------------------------------------------------------------- /controllers/interviews_controllers.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ayush-Kanduri/Placement-Cell-Application/HEAD/controllers/interviews_controllers.js -------------------------------------------------------------------------------- /controllers/jobs_controller.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ayush-Kanduri/Placement-Cell-Application/HEAD/controllers/jobs_controller.js -------------------------------------------------------------------------------- /controllers/students_controller.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ayush-Kanduri/Placement-Cell-Application/HEAD/controllers/students_controller.js -------------------------------------------------------------------------------- /gulpfile.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ayush-Kanduri/Placement-Cell-Application/HEAD/gulpfile.js -------------------------------------------------------------------------------- /index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ayush-Kanduri/Placement-Cell-Application/HEAD/index.js -------------------------------------------------------------------------------- /models/batch.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ayush-Kanduri/Placement-Cell-Application/HEAD/models/batch.js -------------------------------------------------------------------------------- /models/company.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ayush-Kanduri/Placement-Cell-Application/HEAD/models/company.js -------------------------------------------------------------------------------- /models/course.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ayush-Kanduri/Placement-Cell-Application/HEAD/models/course.js -------------------------------------------------------------------------------- /models/employee.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ayush-Kanduri/Placement-Cell-Application/HEAD/models/employee.js -------------------------------------------------------------------------------- /models/enrolment.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ayush-Kanduri/Placement-Cell-Application/HEAD/models/enrolment.js -------------------------------------------------------------------------------- /models/interview.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ayush-Kanduri/Placement-Cell-Application/HEAD/models/interview.js -------------------------------------------------------------------------------- /models/result.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ayush-Kanduri/Placement-Cell-Application/HEAD/models/result.js -------------------------------------------------------------------------------- /models/score.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ayush-Kanduri/Placement-Cell-Application/HEAD/models/score.js -------------------------------------------------------------------------------- /models/student.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ayush-Kanduri/Placement-Cell-Application/HEAD/models/student.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ayush-Kanduri/Placement-Cell-Application/HEAD/package.json -------------------------------------------------------------------------------- /public/assets/css/_header-90211f54a0.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ayush-Kanduri/Placement-Cell-Application/HEAD/public/assets/css/_header-90211f54a0.css -------------------------------------------------------------------------------- /public/assets/css/hamburger-menu-d665fcecd6.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ayush-Kanduri/Placement-Cell-Application/HEAD/public/assets/css/hamburger-menu-d665fcecd6.css -------------------------------------------------------------------------------- /public/assets/css/home-00c02d275d.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ayush-Kanduri/Placement-Cell-Application/HEAD/public/assets/css/home-00c02d275d.css -------------------------------------------------------------------------------- /public/assets/css/jobs-460d779703.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ayush-Kanduri/Placement-Cell-Application/HEAD/public/assets/css/jobs-460d779703.css -------------------------------------------------------------------------------- /public/assets/css/layout-5406082cff.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ayush-Kanduri/Placement-Cell-Application/HEAD/public/assets/css/layout-5406082cff.css -------------------------------------------------------------------------------- /public/assets/css/profile-dffe8b038b.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ayush-Kanduri/Placement-Cell-Application/HEAD/public/assets/css/profile-dffe8b038b.css -------------------------------------------------------------------------------- /public/assets/css/signup-f0d726f855.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ayush-Kanduri/Placement-Cell-Application/HEAD/public/assets/css/signup-f0d726f855.css -------------------------------------------------------------------------------- /public/assets/images/background-2921a09595.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ayush-Kanduri/Placement-Cell-Application/HEAD/public/assets/images/background-2921a09595.jpg -------------------------------------------------------------------------------- /public/assets/images/empty-avatar-c31da21ad1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ayush-Kanduri/Placement-Cell-Application/HEAD/public/assets/images/empty-avatar-c31da21ad1.png -------------------------------------------------------------------------------- /public/assets/images/favicon-695a0e19ec.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ayush-Kanduri/Placement-Cell-Application/HEAD/public/assets/images/favicon-695a0e19ec.png -------------------------------------------------------------------------------- /public/assets/images/female-avatar-b901f36c8d.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ayush-Kanduri/Placement-Cell-Application/HEAD/public/assets/images/female-avatar-b901f36c8d.png -------------------------------------------------------------------------------- /public/assets/images/google-logo-ecff37fa6e.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ayush-Kanduri/Placement-Cell-Application/HEAD/public/assets/images/google-logo-ecff37fa6e.png -------------------------------------------------------------------------------- /public/assets/images/logo-490d308aec.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ayush-Kanduri/Placement-Cell-Application/HEAD/public/assets/images/logo-490d308aec.png -------------------------------------------------------------------------------- /public/assets/images/male-avatar-10c18e1c5d.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ayush-Kanduri/Placement-Cell-Application/HEAD/public/assets/images/male-avatar-10c18e1c5d.png -------------------------------------------------------------------------------- /public/assets/js/_header-810664029c.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ayush-Kanduri/Placement-Cell-Application/HEAD/public/assets/js/_header-810664029c.js -------------------------------------------------------------------------------- /public/assets/js/home-d41d8cd98f.js: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /public/assets/js/interview-58c514125b.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ayush-Kanduri/Placement-Cell-Application/HEAD/public/assets/js/interview-58c514125b.js -------------------------------------------------------------------------------- /public/assets/js/jobs-011d4f7726.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ayush-Kanduri/Placement-Cell-Application/HEAD/public/assets/js/jobs-011d4f7726.js -------------------------------------------------------------------------------- /public/assets/js/layout-d41d8cd98f.js: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /public/assets/js/login-0cba0fabf3.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ayush-Kanduri/Placement-Cell-Application/HEAD/public/assets/js/login-0cba0fabf3.js -------------------------------------------------------------------------------- /public/assets/js/noty-90254c8416.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ayush-Kanduri/Placement-Cell-Application/HEAD/public/assets/js/noty-90254c8416.js -------------------------------------------------------------------------------- /public/assets/js/signup-2836e32324.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ayush-Kanduri/Placement-Cell-Application/HEAD/public/assets/js/signup-2836e32324.js -------------------------------------------------------------------------------- /public/assets/js/student-c02824bbbb.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ayush-Kanduri/Placement-Cell-Application/HEAD/public/assets/js/student-c02824bbbb.js -------------------------------------------------------------------------------- /public/assets/js/students-list-c8fc0845a5.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ayush-Kanduri/Placement-Cell-Application/HEAD/public/assets/js/students-list-c8fc0845a5.js -------------------------------------------------------------------------------- /public/assets/js/update-profile-3b283e2ef4.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ayush-Kanduri/Placement-Cell-Application/HEAD/public/assets/js/update-profile-3b283e2ef4.js -------------------------------------------------------------------------------- /public/assets/rev-manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ayush-Kanduri/Placement-Cell-Application/HEAD/public/assets/rev-manifest.json -------------------------------------------------------------------------------- /public/rev-manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ayush-Kanduri/Placement-Cell-Application/HEAD/public/rev-manifest.json -------------------------------------------------------------------------------- /routes/downloads.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ayush-Kanduri/Placement-Cell-Application/HEAD/routes/downloads.js -------------------------------------------------------------------------------- /routes/home.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ayush-Kanduri/Placement-Cell-Application/HEAD/routes/home.js -------------------------------------------------------------------------------- /routes/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ayush-Kanduri/Placement-Cell-Application/HEAD/routes/index.js -------------------------------------------------------------------------------- /routes/interviews.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ayush-Kanduri/Placement-Cell-Application/HEAD/routes/interviews.js -------------------------------------------------------------------------------- /routes/jobs.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ayush-Kanduri/Placement-Cell-Application/HEAD/routes/jobs.js -------------------------------------------------------------------------------- /routes/students.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ayush-Kanduri/Placement-Cell-Application/HEAD/routes/students.js -------------------------------------------------------------------------------- /storage/json/jobs.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ayush-Kanduri/Placement-Cell-Application/HEAD/storage/json/jobs.json -------------------------------------------------------------------------------- /storage/sounds/Ting.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ayush-Kanduri/Placement-Cell-Application/HEAD/storage/sounds/Ting.mp3 -------------------------------------------------------------------------------- /views/_header.ejs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ayush-Kanduri/Placement-Cell-Application/HEAD/views/_header.ejs -------------------------------------------------------------------------------- /views/_interview-accordion.ejs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ayush-Kanduri/Placement-Cell-Application/HEAD/views/_interview-accordion.ejs -------------------------------------------------------------------------------- /views/_noty.ejs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ayush-Kanduri/Placement-Cell-Application/HEAD/views/_noty.ejs -------------------------------------------------------------------------------- /views/_student-accordion.ejs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ayush-Kanduri/Placement-Cell-Application/HEAD/views/_student-accordion.ejs -------------------------------------------------------------------------------- /views/_student-list.ejs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ayush-Kanduri/Placement-Cell-Application/HEAD/views/_student-list.ejs -------------------------------------------------------------------------------- /views/home.ejs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ayush-Kanduri/Placement-Cell-Application/HEAD/views/home.ejs -------------------------------------------------------------------------------- /views/job.ejs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ayush-Kanduri/Placement-Cell-Application/HEAD/views/job.ejs -------------------------------------------------------------------------------- /views/layout.ejs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ayush-Kanduri/Placement-Cell-Application/HEAD/views/layout.ejs -------------------------------------------------------------------------------- /views/profile.ejs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ayush-Kanduri/Placement-Cell-Application/HEAD/views/profile.ejs -------------------------------------------------------------------------------- /views/signup.ejs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ayush-Kanduri/Placement-Cell-Application/HEAD/views/signup.ejs -------------------------------------------------------------------------------- /views/templates.ejs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ayush-Kanduri/Placement-Cell-Application/HEAD/views/templates.ejs --------------------------------------------------------------------------------