gitextract_e3ty6fu4/ ├── .github/ │ ├── ISSUE_TEMPLATE/ │ │ ├── bug.yml │ │ ├── documentation.yml │ │ └── feature.yml │ ├── pull_request_template.md │ └── workflows/ │ ├── auto-comment-pr-merge.yml │ ├── greetings.yml │ └── pr-comment.yml ├── .gitignore ├── .idea/ │ └── .gitignore ├── .vscode/ │ ├── c_cpp_properties.json │ └── settings.json ├── 404.html ├── CODE_OF_CONDUCT.md ├── CONTRIBUITING.md ├── FAQ.html ├── LICENSE ├── Learn.md ├── Licensing.html ├── README.md ├── TermsOfUse.html ├── account/ │ ├── contact.html │ ├── feedback.html │ ├── home_account.html │ ├── login-signup.html │ ├── notifications.html │ ├── orders.html │ └── rewards.html ├── addtokart/ │ ├── checkout.html │ ├── index.html │ └── style.css ├── auth/ │ ├── index.html │ └── styles.css ├── components/ │ ├── footer.html │ ├── footer_.css │ └── header.html ├── css/ │ ├── account.css │ ├── animation.css │ ├── categories.css │ ├── contact.css │ ├── contactus.css │ ├── darkmode.css │ ├── feedback.css │ ├── footer.css │ ├── header.css │ ├── homeHeader.css │ ├── index.css │ ├── login-signup.css │ ├── notifications.css │ ├── orders.css │ ├── rating.css │ ├── responsive.css │ ├── styles.css │ ├── typography.css │ └── wishlist.css ├── customersupport/ │ ├── index.html │ ├── script.js │ └── styles.css ├── dashboard/ │ ├── sellerdashboard.html │ ├── styles.css │ └── userdashboard.html ├── feedback/ │ └── feedback.html ├── footer/ │ └── footer.html ├── gift-cards/ │ ├── index.html │ └── styles.css ├── header/ │ └── header.html ├── helpcenter.html ├── helpcentre/ │ ├── helpcentre.css │ └── index.html ├── img/ │ └── download.jfif ├── index.html ├── js/ │ ├── account.js │ ├── addKartProduct.js │ ├── categoryData.json │ ├── categoryjs.js │ ├── componentsFetch.js │ ├── contactus.js │ ├── fetchProductOfIndex.js │ ├── fkMobileApp.js │ ├── giftCard.js │ ├── homeHeader.js │ ├── index.js │ ├── ipcwdsOnlyDist.js │ ├── login-signup.js │ ├── notification-script.js │ ├── notifications.js │ ├── orders.js │ ├── rewards.js │ └── topOffers.js ├── login and sign up FlipKart/ │ └── dist/ │ ├── index.html │ ├── script.js │ └── style.css ├── manifest.json ├── offerpage/ │ ├── offerpage.css │ ├── offerpage.js │ └── offerportal.html ├── package.json ├── pages/ │ ├── Cancellation_and_Returns/ │ │ ├── index.html │ │ ├── script.js │ │ └── style.css │ ├── Corporate_Information/ │ │ ├── index.html │ │ └── style.css │ ├── EPR/ │ │ ├── index.html │ │ └── styles.css │ ├── EPR_Page/ │ │ ├── epr.css │ │ └── epr.html │ ├── Grievance Redressal/ │ │ ├── index.html │ │ └── styles.css │ ├── Licensing/ │ │ └── Licensing.css │ ├── Payments/ │ │ ├── index.html │ │ ├── script.js │ │ └── style.css │ ├── Privacy/ │ │ ├── index.html │ │ ├── script.js │ │ └── style.css │ ├── Security/ │ │ ├── security.css │ │ └── security.html │ ├── Security_Page/ │ │ ├── index.html │ │ ├── script.js │ │ └── style.css │ ├── Sell_Online/ │ │ ├── script.js │ │ ├── sell_online.html │ │ └── style.css │ ├── Shipping/ │ │ ├── index.html │ │ ├── script.js │ │ └── style.css │ ├── Sitemap/ │ │ ├── index.html │ │ └── style.css │ ├── cancellation & return/ │ │ ├── index.html │ │ └── styles.css │ ├── contact_us/ │ │ ├── contact_us.css │ │ └── contact_us.html │ ├── content-page.html │ ├── help center/ │ │ ├── index.html │ │ └── styles.css │ ├── privacypolicy/ │ │ ├── index.html │ │ ├── privacypolicy.js │ │ └── styles.css │ ├── return and Cancellation/ │ │ ├── return.css │ │ └── return.html │ ├── securityPage/ │ │ ├── index.html │ │ └── styles.css │ └── terms/ │ ├── index.html │ ├── styles.css │ └── terms.js ├── plus/ │ ├── index.html │ ├── plus.css │ ├── plus.js │ └── products.json ├── sell-online/ │ ├── index.html │ ├── script.js │ └── styles.css ├── server_backend/ │ ├── .gitignore │ ├── db.js │ ├── index.js │ ├── models/ │ │ └── User.js │ ├── package.json │ └── routes/ │ └── auth.js ├── src/ │ ├── Beauty, Toys & More/ │ │ ├── footer_.css │ │ ├── index.html │ │ └── thisComponet.js │ ├── Electronics/ │ │ ├── footer_.css │ │ ├── index.html │ │ └── thisComponet.js │ ├── Fashion/ │ │ ├── footer_.css │ │ ├── index.html │ │ └── thisComponet.js │ ├── Furniture/ │ │ ├── footer_.css │ │ ├── index.html │ │ └── thisComponet.js │ ├── Grocery/ │ │ ├── footer_.css │ │ ├── index.html │ │ └── thisComponet.js │ ├── Home & Kitchen/ │ │ ├── footer_.css │ │ ├── index.html │ │ └── thisComponet.js │ ├── Mobile Store.html │ ├── Mobile and Tab Store.html │ ├── Mobiles & Tablets/ │ │ ├── footer_.css │ │ ├── index.html │ │ └── thisComponet.js │ ├── Mobiles & Tablets - Copy/ │ │ └── index.html │ ├── TVs & Appliances/ │ │ ├── footer_.css │ │ ├── index.html │ │ └── thisComponet.js │ ├── Top Offers/ │ │ ├── footer_.css │ │ └── index.html │ ├── Travel/ │ │ ├── footer_.css │ │ ├── index.html │ │ ├── travel-script.js │ │ └── travel-style.css │ ├── Two Wheelers/ │ │ ├── footer_.css │ │ ├── index.html │ │ └── thisComponet.js │ ├── demo.css │ └── demo.html ├── the-gift-card-store/ │ ├── giftcard.css │ └── index.html ├── top-offer.css ├── top-offers.html └── viewcart/ ├── cart.css ├── index.html └── viewcart.js