├── .github ├── ISSUE_TEMPLATE.md └── PR_TEMPLATE.md ├── .gitignore ├── .travis.yml ├── CODE_OF_CONDUCT.md ├── ER Diagram.png ├── LICENSE.md ├── README.md ├── app.js ├── bin └── www ├── favicon.png ├── images ├── ACMICPC.jpg ├── DefaultEvent.png ├── LNMHacks.jpg ├── coding.svg ├── competitive.png ├── development.jpg ├── logo.jpg ├── papersLnmiit.jpg ├── parallax_1.jpg └── parallax_2.jpg ├── models ├── Admin.js ├── Event.js ├── Registrations.js └── User.js ├── package.json ├── public ├── css │ └── style.css ├── favicon.png └── js │ └── index.js ├── routes ├── admin.js ├── index.js └── signup.js └── views ├── about.hbs ├── addevent.hbs ├── adminlogin.hbs ├── adminpanel.hbs ├── classes.hbs ├── competition.hbs ├── deleteEvent.hbs ├── editevent.hbs ├── error.hbs ├── event.hbs ├── index.hbs ├── listusers.hbs ├── partials ├── adminheader.hbs ├── footer.hbs └── header.hbs ├── profile.hbs ├── signup.hbs └── workshops.hbs /.github/ISSUE_TEMPLATE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenSouce-LNMIIT/Cybros-Web-Application/HEAD/.github/ISSUE_TEMPLATE.md -------------------------------------------------------------------------------- /.github/PR_TEMPLATE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenSouce-LNMIIT/Cybros-Web-Application/HEAD/.github/PR_TEMPLATE.md -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenSouce-LNMIIT/Cybros-Web-Application/HEAD/.gitignore -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- 1 | language: node_js 2 | -------------------------------------------------------------------------------- /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenSouce-LNMIIT/Cybros-Web-Application/HEAD/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /ER Diagram.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenSouce-LNMIIT/Cybros-Web-Application/HEAD/ER Diagram.png -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenSouce-LNMIIT/Cybros-Web-Application/HEAD/LICENSE.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenSouce-LNMIIT/Cybros-Web-Application/HEAD/README.md -------------------------------------------------------------------------------- /app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenSouce-LNMIIT/Cybros-Web-Application/HEAD/app.js -------------------------------------------------------------------------------- /bin/www: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenSouce-LNMIIT/Cybros-Web-Application/HEAD/bin/www -------------------------------------------------------------------------------- /favicon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenSouce-LNMIIT/Cybros-Web-Application/HEAD/favicon.png -------------------------------------------------------------------------------- /images/ACMICPC.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenSouce-LNMIIT/Cybros-Web-Application/HEAD/images/ACMICPC.jpg -------------------------------------------------------------------------------- /images/DefaultEvent.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenSouce-LNMIIT/Cybros-Web-Application/HEAD/images/DefaultEvent.png -------------------------------------------------------------------------------- /images/LNMHacks.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenSouce-LNMIIT/Cybros-Web-Application/HEAD/images/LNMHacks.jpg -------------------------------------------------------------------------------- /images/coding.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenSouce-LNMIIT/Cybros-Web-Application/HEAD/images/coding.svg -------------------------------------------------------------------------------- /images/competitive.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenSouce-LNMIIT/Cybros-Web-Application/HEAD/images/competitive.png -------------------------------------------------------------------------------- /images/development.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenSouce-LNMIIT/Cybros-Web-Application/HEAD/images/development.jpg -------------------------------------------------------------------------------- /images/logo.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenSouce-LNMIIT/Cybros-Web-Application/HEAD/images/logo.jpg -------------------------------------------------------------------------------- /images/papersLnmiit.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenSouce-LNMIIT/Cybros-Web-Application/HEAD/images/papersLnmiit.jpg -------------------------------------------------------------------------------- /images/parallax_1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenSouce-LNMIIT/Cybros-Web-Application/HEAD/images/parallax_1.jpg -------------------------------------------------------------------------------- /images/parallax_2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenSouce-LNMIIT/Cybros-Web-Application/HEAD/images/parallax_2.jpg -------------------------------------------------------------------------------- /models/Admin.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenSouce-LNMIIT/Cybros-Web-Application/HEAD/models/Admin.js -------------------------------------------------------------------------------- /models/Event.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenSouce-LNMIIT/Cybros-Web-Application/HEAD/models/Event.js -------------------------------------------------------------------------------- /models/Registrations.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenSouce-LNMIIT/Cybros-Web-Application/HEAD/models/Registrations.js -------------------------------------------------------------------------------- /models/User.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenSouce-LNMIIT/Cybros-Web-Application/HEAD/models/User.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenSouce-LNMIIT/Cybros-Web-Application/HEAD/package.json -------------------------------------------------------------------------------- /public/css/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenSouce-LNMIIT/Cybros-Web-Application/HEAD/public/css/style.css -------------------------------------------------------------------------------- /public/favicon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenSouce-LNMIIT/Cybros-Web-Application/HEAD/public/favicon.png -------------------------------------------------------------------------------- /public/js/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenSouce-LNMIIT/Cybros-Web-Application/HEAD/public/js/index.js -------------------------------------------------------------------------------- /routes/admin.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenSouce-LNMIIT/Cybros-Web-Application/HEAD/routes/admin.js -------------------------------------------------------------------------------- /routes/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenSouce-LNMIIT/Cybros-Web-Application/HEAD/routes/index.js -------------------------------------------------------------------------------- /routes/signup.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenSouce-LNMIIT/Cybros-Web-Application/HEAD/routes/signup.js -------------------------------------------------------------------------------- /views/about.hbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenSouce-LNMIIT/Cybros-Web-Application/HEAD/views/about.hbs -------------------------------------------------------------------------------- /views/addevent.hbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenSouce-LNMIIT/Cybros-Web-Application/HEAD/views/addevent.hbs -------------------------------------------------------------------------------- /views/adminlogin.hbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenSouce-LNMIIT/Cybros-Web-Application/HEAD/views/adminlogin.hbs -------------------------------------------------------------------------------- /views/adminpanel.hbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenSouce-LNMIIT/Cybros-Web-Application/HEAD/views/adminpanel.hbs -------------------------------------------------------------------------------- /views/classes.hbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenSouce-LNMIIT/Cybros-Web-Application/HEAD/views/classes.hbs -------------------------------------------------------------------------------- /views/competition.hbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenSouce-LNMIIT/Cybros-Web-Application/HEAD/views/competition.hbs -------------------------------------------------------------------------------- /views/deleteEvent.hbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenSouce-LNMIIT/Cybros-Web-Application/HEAD/views/deleteEvent.hbs -------------------------------------------------------------------------------- /views/editevent.hbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenSouce-LNMIIT/Cybros-Web-Application/HEAD/views/editevent.hbs -------------------------------------------------------------------------------- /views/error.hbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenSouce-LNMIIT/Cybros-Web-Application/HEAD/views/error.hbs -------------------------------------------------------------------------------- /views/event.hbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenSouce-LNMIIT/Cybros-Web-Application/HEAD/views/event.hbs -------------------------------------------------------------------------------- /views/index.hbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenSouce-LNMIIT/Cybros-Web-Application/HEAD/views/index.hbs -------------------------------------------------------------------------------- /views/listusers.hbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenSouce-LNMIIT/Cybros-Web-Application/HEAD/views/listusers.hbs -------------------------------------------------------------------------------- /views/partials/adminheader.hbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenSouce-LNMIIT/Cybros-Web-Application/HEAD/views/partials/adminheader.hbs -------------------------------------------------------------------------------- /views/partials/footer.hbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenSouce-LNMIIT/Cybros-Web-Application/HEAD/views/partials/footer.hbs -------------------------------------------------------------------------------- /views/partials/header.hbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenSouce-LNMIIT/Cybros-Web-Application/HEAD/views/partials/header.hbs -------------------------------------------------------------------------------- /views/profile.hbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenSouce-LNMIIT/Cybros-Web-Application/HEAD/views/profile.hbs -------------------------------------------------------------------------------- /views/signup.hbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenSouce-LNMIIT/Cybros-Web-Application/HEAD/views/signup.hbs -------------------------------------------------------------------------------- /views/workshops.hbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenSouce-LNMIIT/Cybros-Web-Application/HEAD/views/workshops.hbs --------------------------------------------------------------------------------