├── .gitignore ├── public ├── img │ ├── event1.jpg │ ├── event2.jpg │ ├── event3.jpg │ ├── team-1.png │ ├── team.jpg │ ├── video.png │ ├── brand-yt.png │ ├── events.jpeg │ ├── favicon.png │ ├── meeting.jpg │ ├── slider1.jpg │ ├── slider2.jpg │ ├── slider3.jpg │ ├── about1-team.png │ ├── error-404.png │ ├── hero-steve.jpg │ ├── home-hero.jpeg │ ├── logo-footer.jpg │ ├── upcoming.jpeg │ ├── departments.jpeg │ ├── circle-cropped.png │ ├── hero-department.jpg │ ├── Registration-Form.png │ ├── contact-confirmation.png │ ├── dept_page_carousel_1.png │ ├── dept_page_carousel_2.png │ ├── dept_page_carousel_3.png │ ├── dept_page_carousel_4.png │ ├── dept_page_carousel_5.png │ ├── dept_page_carousel_6.png │ ├── dept_page_carousel_7.png │ ├── about2-time-management.png │ ├── department_achievements.png │ ├── spinner.svg │ └── footer-bg.svg ├── fonts │ ├── LineIcons.eot │ ├── LineIcons.ttf │ ├── LineIcons.woff │ └── LineIcons.woff2 ├── js │ ├── scrolling-nav.js │ ├── plugins.js │ ├── toggle.js │ └── app.js └── css │ ├── slick.css │ └── tingle.min.css ├── postcss.config.js ├── utils ├── CatchAsync.js └── errorHandler.js ├── tailwind_src.css ├── views └── layouts │ ├── auth │ ├── partials │ │ ├── head.ejs │ │ ├── scripts.ejs │ │ └── links.ejs │ └── password-reset-email.ejs │ ├── home │ ├── partials │ │ ├── archive │ │ │ ├── head.ejs │ │ │ └── links.ejs │ │ ├── scripts.ejs │ │ └── head-links.ejs │ ├── sections │ │ ├── footer-credits.ejs │ │ ├── magazine-form.ejs │ │ ├── brands.ejs │ │ ├── event-description.ejs │ │ ├── suggest-event.ejs │ │ ├── all-departments.ejs │ │ ├── home-about-us.ejs │ │ ├── vision.ejs │ │ ├── contact-form.ejs │ │ ├── feedback-form.ejs │ │ ├── event-registration.ejs │ │ ├── navbar.ejs │ │ ├── event-organizers.ejs │ │ ├── event-hosts.ejs │ │ ├── event-sponsors.ejs │ │ ├── video-stats.ejs │ │ ├── features.ejs │ │ ├── about-us.ejs │ │ ├── event-timeline.ejs │ │ └── top3-department.ejs │ ├── credits.ejs │ ├── departments_page.ejs │ ├── event-page.ejs │ ├── department_page.ejs │ ├── event-landing.ejs │ └── home-new.ejs │ ├── dashboard │ ├── sections │ │ ├── dashboard-styles.css │ │ ├── scripts.ejs │ │ ├── head.ejs │ │ ├── key-gen.ejs │ │ ├── department-edit-form.ejs │ │ ├── profile-form.ejs │ │ ├── header.ejs │ │ ├── external-links.ejs │ │ ├── contact-form.ejs │ │ └── stat-card.ejs │ ├── events.ejs │ ├── profile.ejs │ ├── event-participants.ejs │ ├── messages.ejs │ ├── participant-events.ejs │ ├── participants.ejs │ ├── all-messages.ejs │ ├── board.ejs │ ├── key-gen.ejs │ └── department.ejs │ └── error-404.ejs ├── tailwind.config.js ├── .env.example ├── models ├── regKey.js ├── newsletter.js ├── event-suggestion.js ├── magazine-reciever.js ├── internship.js ├── dept.js ├── participant.js ├── contact.js ├── feedback.js ├── event.js └── staff.js ├── routes ├── index.js ├── dashboard │ ├── board.js │ ├── mag-subs.js │ ├── participant.js │ ├── profile.js │ ├── key-generate.js │ ├── contact.js │ ├── internship.js │ ├── index.js │ ├── department.js │ └── events.js ├── department.js ├── home.js ├── event.js └── auth.js ├── src └── styles.css ├── LICENSE ├── package.json ├── seeds ├── event_seed.js ├── staff_seed.js ├── department_seed.js └── participant_seed.js ├── controllers ├── dashboardCont │ ├── board.js │ ├── keyGenerate.js │ ├── magazine.js │ ├── index.js │ └── profile.js └── deptCont.js └── server.js /.gitignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | .env 3 | package-lock.json 4 | .vscode -------------------------------------------------------------------------------- /public/img/event1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LastComrade/Event-Management-System/HEAD/public/img/event1.jpg -------------------------------------------------------------------------------- /public/img/event2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LastComrade/Event-Management-System/HEAD/public/img/event2.jpg -------------------------------------------------------------------------------- /public/img/event3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LastComrade/Event-Management-System/HEAD/public/img/event3.jpg -------------------------------------------------------------------------------- /public/img/team-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LastComrade/Event-Management-System/HEAD/public/img/team-1.png -------------------------------------------------------------------------------- /public/img/team.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LastComrade/Event-Management-System/HEAD/public/img/team.jpg -------------------------------------------------------------------------------- /public/img/video.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LastComrade/Event-Management-System/HEAD/public/img/video.png -------------------------------------------------------------------------------- /public/img/brand-yt.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LastComrade/Event-Management-System/HEAD/public/img/brand-yt.png -------------------------------------------------------------------------------- /public/img/events.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LastComrade/Event-Management-System/HEAD/public/img/events.jpeg -------------------------------------------------------------------------------- /public/img/favicon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LastComrade/Event-Management-System/HEAD/public/img/favicon.png -------------------------------------------------------------------------------- /public/img/meeting.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LastComrade/Event-Management-System/HEAD/public/img/meeting.jpg -------------------------------------------------------------------------------- /public/img/slider1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LastComrade/Event-Management-System/HEAD/public/img/slider1.jpg -------------------------------------------------------------------------------- /public/img/slider2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LastComrade/Event-Management-System/HEAD/public/img/slider2.jpg -------------------------------------------------------------------------------- /public/img/slider3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LastComrade/Event-Management-System/HEAD/public/img/slider3.jpg -------------------------------------------------------------------------------- /postcss.config.js: -------------------------------------------------------------------------------- 1 | module.exports = { 2 | plugins: { 3 | tailwindcss: {}, 4 | autoprefixer: {}, 5 | }, 6 | } 7 | -------------------------------------------------------------------------------- /public/fonts/LineIcons.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LastComrade/Event-Management-System/HEAD/public/fonts/LineIcons.eot -------------------------------------------------------------------------------- /public/fonts/LineIcons.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LastComrade/Event-Management-System/HEAD/public/fonts/LineIcons.ttf -------------------------------------------------------------------------------- /public/img/about1-team.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LastComrade/Event-Management-System/HEAD/public/img/about1-team.png -------------------------------------------------------------------------------- /public/img/error-404.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LastComrade/Event-Management-System/HEAD/public/img/error-404.png -------------------------------------------------------------------------------- /public/img/hero-steve.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LastComrade/Event-Management-System/HEAD/public/img/hero-steve.jpg -------------------------------------------------------------------------------- /public/img/home-hero.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LastComrade/Event-Management-System/HEAD/public/img/home-hero.jpeg -------------------------------------------------------------------------------- /public/img/logo-footer.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LastComrade/Event-Management-System/HEAD/public/img/logo-footer.jpg -------------------------------------------------------------------------------- /public/img/upcoming.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LastComrade/Event-Management-System/HEAD/public/img/upcoming.jpeg -------------------------------------------------------------------------------- /public/fonts/LineIcons.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LastComrade/Event-Management-System/HEAD/public/fonts/LineIcons.woff -------------------------------------------------------------------------------- /public/fonts/LineIcons.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LastComrade/Event-Management-System/HEAD/public/fonts/LineIcons.woff2 -------------------------------------------------------------------------------- /public/img/departments.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LastComrade/Event-Management-System/HEAD/public/img/departments.jpeg -------------------------------------------------------------------------------- /public/img/circle-cropped.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LastComrade/Event-Management-System/HEAD/public/img/circle-cropped.png -------------------------------------------------------------------------------- /public/img/hero-department.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LastComrade/Event-Management-System/HEAD/public/img/hero-department.jpg -------------------------------------------------------------------------------- /public/img/Registration-Form.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LastComrade/Event-Management-System/HEAD/public/img/Registration-Form.png -------------------------------------------------------------------------------- /public/img/contact-confirmation.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LastComrade/Event-Management-System/HEAD/public/img/contact-confirmation.png -------------------------------------------------------------------------------- /public/img/dept_page_carousel_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LastComrade/Event-Management-System/HEAD/public/img/dept_page_carousel_1.png -------------------------------------------------------------------------------- /public/img/dept_page_carousel_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LastComrade/Event-Management-System/HEAD/public/img/dept_page_carousel_2.png -------------------------------------------------------------------------------- /public/img/dept_page_carousel_3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LastComrade/Event-Management-System/HEAD/public/img/dept_page_carousel_3.png -------------------------------------------------------------------------------- /public/img/dept_page_carousel_4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LastComrade/Event-Management-System/HEAD/public/img/dept_page_carousel_4.png -------------------------------------------------------------------------------- /public/img/dept_page_carousel_5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LastComrade/Event-Management-System/HEAD/public/img/dept_page_carousel_5.png -------------------------------------------------------------------------------- /public/img/dept_page_carousel_6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LastComrade/Event-Management-System/HEAD/public/img/dept_page_carousel_6.png -------------------------------------------------------------------------------- /public/img/dept_page_carousel_7.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LastComrade/Event-Management-System/HEAD/public/img/dept_page_carousel_7.png -------------------------------------------------------------------------------- /public/img/about2-time-management.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LastComrade/Event-Management-System/HEAD/public/img/about2-time-management.png -------------------------------------------------------------------------------- /public/img/department_achievements.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LastComrade/Event-Management-System/HEAD/public/img/department_achievements.png -------------------------------------------------------------------------------- /utils/CatchAsync.js: -------------------------------------------------------------------------------- 1 | // Ignore this file its still in the development proccess 2 | 3 | module.exports = (func) => { 4 | return (req, res, next) => { 5 | func(req, res, next).catch(next); 6 | }; 7 | }; 8 | -------------------------------------------------------------------------------- /tailwind_src.css: -------------------------------------------------------------------------------- 1 | @import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap'); 2 | 3 | @tailwind base; 4 | @tailwind components; 5 | @tailwind utilities; -------------------------------------------------------------------------------- /views/layouts/auth/partials/head.ejs: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 |
5 |3 | Designed & Developed By Technical Team, E-Cell. 5 |
6 |
8 |
11 |
14 |
17 |
20 | 24 | <%= foundEvent.description %> 25 |
26 |20 | <%= dept.description.substring(0, 150) %>... 21 |
22 |The Entrepreneurship Cell (E-Cell) GNDEC was initiated in September 2020 with a 11 | vision to promote ‘Entrepreneurship’ among the students of GNDEC, Ludhiana and to build an 12 | exhaustive resource pool to aid potential student entrepreneurs. The Entrepreneurship Cell 13 | (E-Cell) is a non-profit organization run by students of GNDEC,Ludhiana. We aim manifesting 14 | the latent entrepreneurial spirit of young students and corporate. We at E-Cell host various 15 | workshops,speaker sessions, competitions and innovation event for aspiring entrepreneurs.
16 | 19 |
25 |
5 | 12 | <% if (title.length > "E-Cell | Departments".length && title.substring(0, 20) === "E-Cell | Departments") { %> 13 | <%= foundDept.description %> 14 | <% } else if (title === "E-Cell | Home") { %> 15 | The nature of being an entrepreneur means that you fully embrace ambiguity 16 | and are comfortable with being challenged regularly. 17 | To develop, support and deliver the entrepreneurship 18 | spirit among students in their quest to achieve success 19 | in establishing their venture at all junctures. <% } %> 20 |
21 | 25 |Page not found!
14 |Invalid URL
OR
The page you requested is no longer available.
22 |
23 | 45 | <%= org.designation %> 46 |
47 |45 | <%= host.designation %> 46 |
47 |45 | <%= sponsor.designation %> 46 |
47 |
10 | We at Entrepreneurship Cell, GNDEC always try to aim for perfection in our events, and guiding budding entrepreneurs. Get a chance work with the innovative, creative, and hardworking individuals
28 |Participants
35 |Events
42 |Members
49 |All upcoming events, webinars and activities with their dates, details and enrollment procedures can be found here
24 | Learn More 26 |E-Cell offers various Departments for you to explore and work in them by 39 | flaunting your skills and creativity, with excellent people.
40 | Explore 42 |This functionality is exclusively for E-Cell faculty members to login at their ends and manage their organization.
55 | Visit 57 |Lorem ipsum dolor sit amet, consectetur 20 | adipisicing 21 | elit. Veniam tempora 22 | quidem vel sint.
23 |Lorem ipsum dolor sit amet, consectetur 34 | adipisicing 35 | elit. Veniam tempora 36 | quidem vel sint.
37 |Lorem ipsum dolor sit amet, consectetur 48 | adipisicing 49 | elit. Veniam tempora 50 | quidem vel sint.
51 |Lorem ipsum dolor sit amet, consectetur 62 | adipisicing 63 | elit. Veniam tempora 64 | quidem vel sint.
65 |Our Top Performing
5 |Departments
6 |Of the Month
7 | 8 |20 | Lorem ipsum dolor sit amet,consetetur sadipscing elitr, seddiam nonu eirmod 21 | tempor 22 | invidunt labore.(Tagline)
23 | Visit Department 25 |38 | Lorem ipsum dolor sit amet,consetetur sadipscing elitr, seddiam nonu eirmod 39 | tempor 40 | invidunt labore.(Tagline)
41 | Visit Department 43 |56 | Lorem ipsum dolor sit amet,consetetur sadipscing elitr, seddiam nonu eirmod 57 | tempor 58 | invidunt labore.(Tagline)
59 | Visit Department 61 |Fill in the 7 | form to submit any query
8 | 9 |15 | <%= staffCount %> 16 |
17 |Members
18 |32 | <%= eventCount %> 33 |
34 |Events
35 |49 | <%= deptCount %> 50 |
51 |Departments
52 |67 | <%= participantCount %> 68 |
69 |Participants
70 |