├── .gitignore ├── Backend ├── api │ ├── controllers │ │ ├── codeInvicta.controller.js │ │ └── registration.controller.js │ ├── middlewares │ │ └── recaptcha.js │ ├── models │ │ ├── codeInvicta.js │ │ └── registration.js │ └── routes │ │ ├── codeInvicta.routes.js │ │ └── registration.routes.js └── utils │ └── logResponses.js ├── Frontend ├── css │ ├── index.css │ └── spacing.css ├── img │ ├── about.svg │ ├── bg.png │ ├── bottom-splash.png │ ├── coding.png │ ├── community.svg │ ├── dcoder.png │ ├── devsoc21-new.png │ ├── favicon.svg │ ├── laptop-blogging.png │ ├── main-bg.png │ ├── medium.png │ ├── techchronicle.svg │ └── writefull_logo.svg └── js │ └── index.js ├── LICENSE ├── README.md ├── app.js ├── index.html ├── package.json └── sitemap.xml /.gitignore: -------------------------------------------------------------------------------- 1 | .env 2 | node_modules 3 | .vscode -------------------------------------------------------------------------------- /Backend/api/controllers/codeInvicta.controller.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeChefVIT/TechChronicles/HEAD/Backend/api/controllers/codeInvicta.controller.js -------------------------------------------------------------------------------- /Backend/api/controllers/registration.controller.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeChefVIT/TechChronicles/HEAD/Backend/api/controllers/registration.controller.js -------------------------------------------------------------------------------- /Backend/api/middlewares/recaptcha.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeChefVIT/TechChronicles/HEAD/Backend/api/middlewares/recaptcha.js -------------------------------------------------------------------------------- /Backend/api/models/codeInvicta.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeChefVIT/TechChronicles/HEAD/Backend/api/models/codeInvicta.js -------------------------------------------------------------------------------- /Backend/api/models/registration.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeChefVIT/TechChronicles/HEAD/Backend/api/models/registration.js -------------------------------------------------------------------------------- /Backend/api/routes/codeInvicta.routes.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeChefVIT/TechChronicles/HEAD/Backend/api/routes/codeInvicta.routes.js -------------------------------------------------------------------------------- /Backend/api/routes/registration.routes.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeChefVIT/TechChronicles/HEAD/Backend/api/routes/registration.routes.js -------------------------------------------------------------------------------- /Backend/utils/logResponses.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeChefVIT/TechChronicles/HEAD/Backend/utils/logResponses.js -------------------------------------------------------------------------------- /Frontend/css/index.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeChefVIT/TechChronicles/HEAD/Frontend/css/index.css -------------------------------------------------------------------------------- /Frontend/css/spacing.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeChefVIT/TechChronicles/HEAD/Frontend/css/spacing.css -------------------------------------------------------------------------------- /Frontend/img/about.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeChefVIT/TechChronicles/HEAD/Frontend/img/about.svg -------------------------------------------------------------------------------- /Frontend/img/bg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeChefVIT/TechChronicles/HEAD/Frontend/img/bg.png -------------------------------------------------------------------------------- /Frontend/img/bottom-splash.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeChefVIT/TechChronicles/HEAD/Frontend/img/bottom-splash.png -------------------------------------------------------------------------------- /Frontend/img/coding.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeChefVIT/TechChronicles/HEAD/Frontend/img/coding.png -------------------------------------------------------------------------------- /Frontend/img/community.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeChefVIT/TechChronicles/HEAD/Frontend/img/community.svg -------------------------------------------------------------------------------- /Frontend/img/dcoder.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeChefVIT/TechChronicles/HEAD/Frontend/img/dcoder.png -------------------------------------------------------------------------------- /Frontend/img/devsoc21-new.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeChefVIT/TechChronicles/HEAD/Frontend/img/devsoc21-new.png -------------------------------------------------------------------------------- /Frontend/img/favicon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeChefVIT/TechChronicles/HEAD/Frontend/img/favicon.svg -------------------------------------------------------------------------------- /Frontend/img/laptop-blogging.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeChefVIT/TechChronicles/HEAD/Frontend/img/laptop-blogging.png -------------------------------------------------------------------------------- /Frontend/img/main-bg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeChefVIT/TechChronicles/HEAD/Frontend/img/main-bg.png -------------------------------------------------------------------------------- /Frontend/img/medium.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeChefVIT/TechChronicles/HEAD/Frontend/img/medium.png -------------------------------------------------------------------------------- /Frontend/img/techchronicle.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeChefVIT/TechChronicles/HEAD/Frontend/img/techchronicle.svg -------------------------------------------------------------------------------- /Frontend/img/writefull_logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeChefVIT/TechChronicles/HEAD/Frontend/img/writefull_logo.svg -------------------------------------------------------------------------------- /Frontend/js/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeChefVIT/TechChronicles/HEAD/Frontend/js/index.js -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeChefVIT/TechChronicles/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeChefVIT/TechChronicles/HEAD/README.md -------------------------------------------------------------------------------- /app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeChefVIT/TechChronicles/HEAD/app.js -------------------------------------------------------------------------------- /index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeChefVIT/TechChronicles/HEAD/index.html -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeChefVIT/TechChronicles/HEAD/package.json -------------------------------------------------------------------------------- /sitemap.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeChefVIT/TechChronicles/HEAD/sitemap.xml --------------------------------------------------------------------------------