├── src ├── assets │ └── .gitkeep ├── app │ ├── common │ │ ├── slider │ │ │ ├── slider.component.scss │ │ │ ├── slider.component.html │ │ │ ├── slider.component.spec.ts │ │ │ └── slider.component.ts │ │ ├── footer │ │ │ ├── footer.component.ts │ │ │ ├── footer.component.scss │ │ │ ├── footer.component.spec.ts │ │ │ └── footer.component.html │ │ ├── sidenav │ │ │ ├── sidenav.component.scss │ │ │ ├── sidenav.component.spec.ts │ │ │ ├── sidenav.component.ts │ │ │ └── sidenav.component.html │ │ └── header │ │ │ ├── header.component.spec.ts │ │ │ ├── header.component.ts │ │ │ ├── header.component.html │ │ │ └── header.component.scss │ ├── myprofile │ │ ├── wishlist │ │ │ ├── wishlist.component.scss │ │ │ ├── wishlist.component.html │ │ │ ├── wishlist.component.ts │ │ │ └── wishlist.component.spec.ts │ │ ├── notifications │ │ │ ├── notifications.component.scss │ │ │ ├── notifications.component.html │ │ │ ├── notifications.component.ts │ │ │ └── notifications.component.spec.ts │ │ ├── reviews-rating │ │ │ ├── reviews-rating.component.scss │ │ │ ├── reviews-rating.component.html │ │ │ ├── reviews-rating.component.ts │ │ │ └── reviews-rating.component.spec.ts │ │ ├── my-rewards │ │ │ ├── my-rewards.component.scss │ │ │ ├── my-rewards.component.html │ │ │ ├── my-rewards.component.ts │ │ │ └── my-rewards.component.spec.ts │ │ ├── profile-information │ │ │ ├── profile-information.component.scss │ │ │ ├── profile-information.component.ts │ │ │ ├── profile-information.component.spec.ts │ │ │ └── profile-information.component.html │ │ ├── myprofile.component.ts │ │ ├── saved-cards │ │ │ ├── saved-cards.component.scss │ │ │ ├── saved-cards.component.ts │ │ │ ├── saved-cards.component.spec.ts │ │ │ └── saved-cards.component.html │ │ ├── manage-address │ │ │ ├── manage-address.component.scss │ │ │ ├── manage-address.component.ts │ │ │ ├── manage-address.component.spec.ts │ │ │ └── manage-address.component.html │ │ ├── myprofile.component.spec.ts │ │ ├── shopping-cart │ │ │ ├── shopping-cart.component.spec.ts │ │ │ ├── shopping-cart.component.ts │ │ │ ├── shopping-cart.component.scss │ │ │ └── shopping-cart.component.html │ │ ├── myprofile.component.scss │ │ └── myprofile.component.html │ ├── interfaces │ │ └── Ilogin.ts │ ├── login │ │ ├── login.component.scss │ │ ├── login.component.spec.ts │ │ ├── login.component.html │ │ └── login.component.ts │ ├── services │ │ ├── loading.service.ts │ │ ├── login.service.spec.ts │ │ ├── loading.service.spec.ts │ │ ├── product.service.spec.ts │ │ ├── login.service.ts │ │ ├── auth-service.ts │ │ └── product.service.ts │ ├── app.component.scss │ ├── app.component.html │ ├── home │ │ ├── home.component.spec.ts │ │ ├── home.component.ts │ │ ├── home.component.scss │ │ └── home.component.html │ ├── products │ │ ├── products.component.spec.ts │ │ ├── products.component.scss │ │ ├── products.component.ts │ │ └── products.component.html │ ├── app.component.ts │ ├── single-product │ │ ├── single-product.component.spec.ts │ │ ├── single-product.component.scss │ │ ├── single-product.component.html │ │ └── single-product.component.ts │ ├── app.component.spec.ts │ ├── app-routing.module.ts │ └── app.module.ts ├── environments │ ├── environment.prod.ts │ └── environment.ts ├── favicon.ico ├── index.html ├── main.ts ├── test.ts ├── styles.scss └── polyfills.ts ├── e2e ├── tsconfig.json ├── src │ ├── app.po.ts │ └── app.e2e-spec.ts └── protractor.conf.js ├── tsconfig.app.json ├── tsconfig.spec.json ├── browserslist ├── tsconfig.json ├── README.md ├── karma.conf.js ├── package.json ├── tslint.json └── angular.json /src/assets/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/app/common/slider/slider.component.scss: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/app/myprofile/wishlist/wishlist.component.scss: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/app/myprofile/notifications/notifications.component.scss: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/app/myprofile/reviews-rating/reviews-rating.component.scss: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/app/myprofile/wishlist/wishlist.component.html: -------------------------------------------------------------------------------- 1 |
wishlist works!
2 | -------------------------------------------------------------------------------- /src/app/interfaces/Ilogin.ts: -------------------------------------------------------------------------------- 1 | export interface User { 2 | mobileNumber: string; 3 | } -------------------------------------------------------------------------------- /src/app/myprofile/notifications/notifications.component.html: -------------------------------------------------------------------------------- 1 |notifications works!
2 | -------------------------------------------------------------------------------- /src/app/myprofile/reviews-rating/reviews-rating.component.html: -------------------------------------------------------------------------------- 1 |reviews-rating works!
2 | -------------------------------------------------------------------------------- /src/environments/environment.prod.ts: -------------------------------------------------------------------------------- 1 | export const environment = { 2 | production: true 3 | }; 4 | -------------------------------------------------------------------------------- /src/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jainpiyus/basic-ecommerce-angular-app/HEAD/src/favicon.ico -------------------------------------------------------------------------------- /src/app/myprofile/my-rewards/my-rewards.component.scss: -------------------------------------------------------------------------------- 1 | .container { 2 | margin:10px; 3 | } 4 | .no-rewards{ 5 | display: flex; 6 | justify-content: center; 7 | transform: translateY(100%); 8 | } -------------------------------------------------------------------------------- /src/app/login/login.component.scss: -------------------------------------------------------------------------------- 1 | .example-container { 2 | display: flex; 3 | flex-direction: column; 4 | width: 280px; 5 | } 6 | 7 | .example-container > * { 8 | width: 100%; 9 | } 10 | -------------------------------------------------------------------------------- /src/app/myprofile/my-rewards/my-rewards.component.html: -------------------------------------------------------------------------------- 1 |
Far far away, behind the word mountains, far from the countries
38 || Subtotal | 65 |$20.60 | 66 |
| Delivery | 69 |$0.60 | 70 |
| Discount | 73 |$0.60 | 74 |
|
77 | 78 | |
79 | |
| Total | 83 |$10.60 | 84 |
What happens when I update my email address (or mobile number)?
41 |Your login email id (or mobile number) changes, likewise. You'll receive all your account related 42 | communication on your updated email address (or mobile number). 43 |
44 |When will my Flipkart account be updated with the new email address (or mobile number)?
45 |It happens as soon as you confirm the verification code sent to your email (or mobile) and save the 46 | changes.
47 | 48 |What happens to my existing Flipkart account when I update my email address (or mobile number)? 49 |
50 |Updating your email address (or mobile number) doesn't invalidate your account. Your account remains 51 | fully functional. You'll continue seeing your Order history, saved information and personal details.
52 | 53 |Does my Seller account get affected when I update my email address?
54 |Flipkart has a 'single sign-on' policy. Any changes will reflect in your Seller account also.
55 |
16 |
17 | NIKE FREE RN 2019 ID
44 |$120.00
45 |$120.00
72 ||
4 | |
7 |
8 | Hello,
9 | Piyush Jain10 | |
11 |
12 | |
14 |
|
25 | |
27 | HOME | 28 |
|
35 | |
37 | PRODUCTS 38 | | 39 |
|
49 | |
51 | 52 | {{item.title}} 53 | | 54 |
|
63 | |
65 | 66 | {{item.title}} 67 | | 68 |
|
76 | |
78 | 79 | Logout 80 | | 81 |
NIKE FREE RN 2019 ID
114 |$120.00
115 |