├── ifat2.php ├── shihab.md ├── assets ├── images │ ├── ajax.gif │ ├── cart.jpg │ ├── dot.png │ ├── logo.png │ ├── next.png │ ├── prev.png │ ├── blank.gif │ ├── close.png │ ├── label.png │ ├── loading.gif │ ├── star-on.png │ ├── grabbing.png │ ├── star-off.png │ ├── banners │ │ ├── shoe.jpg │ │ ├── LHS-banner.jpg │ │ ├── banner-side.png │ │ ├── home-banner.png │ │ ├── cat-banner-1.jpg │ │ ├── home-banner1.jpg │ │ ├── home-banner2.jpg │ │ └── top-menu-banner.jpg │ ├── hot-deals │ │ ├── p1.jpg │ │ ├── p5.jpg │ │ ├── p10.jpg │ │ └── p25.jpg │ ├── payments │ │ ├── 1.png │ │ ├── 2.png │ │ ├── 3.png │ │ ├── 4.png │ │ └── 5.png │ ├── products │ │ ├── p1.jpg │ │ ├── p10.jpg │ │ ├── p11.jpg │ │ ├── p12.jpg │ │ ├── p13.jpg │ │ ├── p14.jpg │ │ ├── p15.jpg │ │ ├── p16.jpg │ │ ├── p17.jpg │ │ ├── p18.jpg │ │ ├── p19.jpg │ │ ├── p2.jpg │ │ ├── p20.jpg │ │ ├── p21.jpg │ │ ├── p22.jpg │ │ ├── p23.jpg │ │ ├── p24.jpg │ │ ├── p25.jpg │ │ ├── p26.jpg │ │ ├── p27.jpg │ │ ├── p28.jpg │ │ ├── p29.jpg │ │ ├── p3.jpg │ │ ├── p30.jpg │ │ ├── p4.jpg │ │ ├── p5.jpg │ │ ├── p6.jpg │ │ ├── p7.jpg │ │ ├── p8.jpg │ │ ├── p9.jpg │ │ ├── desktop1.jpg │ │ ├── desktop2.jpg │ │ ├── laptop1.jpg │ │ ├── laptop2.jpg │ │ ├── shirt1.jpg │ │ ├── shirt2.jpg │ │ ├── shoes1.jpg │ │ └── shoes2.jpg │ ├── star-big-on.png │ ├── brands │ │ ├── brand1.png │ │ ├── brand2.png │ │ ├── brand3.png │ │ ├── brand4.png │ │ ├── brand5.png │ │ └── brand6.png │ ├── sliders │ │ ├── slide1.jpg │ │ └── slide2.jpg │ ├── blog-post │ │ ├── blog_hp.jpg │ │ ├── post1.jpg │ │ ├── post2.jpg │ │ ├── blog_dell.jpg │ │ ├── blog_hp_1.jpg │ │ ├── blog_big_01.jpg │ │ ├── blog_big_02.jpg │ │ ├── blog_big_03.jpg │ │ └── blog_dell_1.jpg │ ├── owl-carousel │ │ ├── grabbing.png │ │ └── AjaxLoader.gif │ └── testimonials │ │ ├── member1.png │ │ ├── member2.png │ │ ├── member3.png │ │ └── member4.png ├── css │ ├── images │ │ ├── close.png │ │ ├── next.png │ │ ├── prev.png │ │ ├── delete.gif │ │ ├── loading.gif │ │ └── star-small.png │ ├── owl.carousel.css │ ├── rateit.css │ ├── lightbox.css │ ├── owl.transitions.css │ └── bootstrap-select.min.css ├── fonts │ ├── FontAwesome.otf │ ├── fontawesome-webfont.eot │ ├── fontawesome-webfont.ttf │ ├── fontawesome-webfont.woff │ ├── fontawesome-webfont.woff2 │ ├── glyphicons-halflings-regular.eot │ ├── glyphicons-halflings-regular.ttf │ └── glyphicons-halflings-regular.woff └── js │ ├── bootstrap-hover-dropdown.min.js │ ├── echo.min.js │ ├── wow.min.js │ ├── jquery.rateit.min.js │ ├── jquery.easing-1.3.min.js │ └── lightbox.min.js ├── Admin ├── dist │ ├── img │ │ ├── icons.png │ │ ├── boxed-bg.jpg │ │ ├── boxed-bg.png │ │ ├── AdminLTELogo.png │ │ ├── user1-128x128.jpg │ │ ├── user2-160x160.jpg │ │ ├── user3-128x128.jpg │ │ ├── user8-128x128.jpg │ │ └── default-150x150.png │ └── js │ │ ├── .eslintrc.json │ │ └── myjs.js ├── plugins │ └── fontawesome-free │ │ ├── webfonts │ │ ├── fa-brands-400.eot │ │ ├── fa-brands-400.ttf │ │ ├── fa-solid-900.eot │ │ ├── fa-solid-900.ttf │ │ ├── fa-solid-900.woff │ │ ├── fa-brands-400.woff │ │ ├── fa-brands-400.woff2 │ │ ├── fa-regular-400.eot │ │ ├── fa-regular-400.ttf │ │ ├── fa-regular-400.woff │ │ ├── fa-regular-400.woff2 │ │ └── fa-solid-900.woff2 │ │ └── css │ │ ├── solid.min.css │ │ ├── brands.min.css │ │ ├── regular.min.css │ │ ├── brands.css │ │ ├── solid.css │ │ ├── regular.css │ │ ├── svg-with-js.min.css │ │ └── svg-with-js.css ├── rightSidebar.php ├── bradcams.php ├── header.php ├── footer.php ├── admindb.php ├── index.php ├── sidebar.php └── navbar.php ├── .htaccess ├── 404.php ├── sliderBottom.php ├── slider.php ├── header.php ├── navTop.php ├── login.php ├── newArriavls.php ├── hotDeals.php ├── bestSeller.php ├── featuredProduct.php ├── Database.php ├── track-orders.php ├── my-wishlist.php ├── product-comparison.php ├── contact.php ├── terms-conditions.php ├── footer.php ├── newProducts.php ├── sign-in.php └── shopping-cart.php /ifat2.php: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /shihab.md: -------------------------------------------------------------------------------- 1 | # ecommerce_php 2 | ## Hi I am Shihabul Islam 3 | -------------------------------------------------------------------------------- /assets/images/ajax.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asif-daffodil/ecommerce_php/HEAD/assets/images/ajax.gif -------------------------------------------------------------------------------- /assets/images/cart.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asif-daffodil/ecommerce_php/HEAD/assets/images/cart.jpg -------------------------------------------------------------------------------- /assets/images/dot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asif-daffodil/ecommerce_php/HEAD/assets/images/dot.png -------------------------------------------------------------------------------- /assets/images/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asif-daffodil/ecommerce_php/HEAD/assets/images/logo.png -------------------------------------------------------------------------------- /assets/images/next.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asif-daffodil/ecommerce_php/HEAD/assets/images/next.png -------------------------------------------------------------------------------- /assets/images/prev.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asif-daffodil/ecommerce_php/HEAD/assets/images/prev.png -------------------------------------------------------------------------------- /Admin/dist/img/icons.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asif-daffodil/ecommerce_php/HEAD/Admin/dist/img/icons.png -------------------------------------------------------------------------------- /assets/images/blank.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asif-daffodil/ecommerce_php/HEAD/assets/images/blank.gif -------------------------------------------------------------------------------- /assets/images/close.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asif-daffodil/ecommerce_php/HEAD/assets/images/close.png -------------------------------------------------------------------------------- /assets/images/label.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asif-daffodil/ecommerce_php/HEAD/assets/images/label.png -------------------------------------------------------------------------------- /assets/images/loading.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asif-daffodil/ecommerce_php/HEAD/assets/images/loading.gif -------------------------------------------------------------------------------- /assets/images/star-on.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asif-daffodil/ecommerce_php/HEAD/assets/images/star-on.png -------------------------------------------------------------------------------- /Admin/dist/img/boxed-bg.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asif-daffodil/ecommerce_php/HEAD/Admin/dist/img/boxed-bg.jpg -------------------------------------------------------------------------------- /Admin/dist/img/boxed-bg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asif-daffodil/ecommerce_php/HEAD/Admin/dist/img/boxed-bg.png -------------------------------------------------------------------------------- /assets/css/images/close.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asif-daffodil/ecommerce_php/HEAD/assets/css/images/close.png -------------------------------------------------------------------------------- /assets/css/images/next.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asif-daffodil/ecommerce_php/HEAD/assets/css/images/next.png -------------------------------------------------------------------------------- /assets/css/images/prev.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asif-daffodil/ecommerce_php/HEAD/assets/css/images/prev.png -------------------------------------------------------------------------------- /assets/images/grabbing.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asif-daffodil/ecommerce_php/HEAD/assets/images/grabbing.png -------------------------------------------------------------------------------- /assets/images/star-off.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asif-daffodil/ecommerce_php/HEAD/assets/images/star-off.png -------------------------------------------------------------------------------- /assets/css/images/delete.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asif-daffodil/ecommerce_php/HEAD/assets/css/images/delete.gif -------------------------------------------------------------------------------- /assets/css/images/loading.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asif-daffodil/ecommerce_php/HEAD/assets/css/images/loading.gif -------------------------------------------------------------------------------- /assets/fonts/FontAwesome.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asif-daffodil/ecommerce_php/HEAD/assets/fonts/FontAwesome.otf -------------------------------------------------------------------------------- /assets/images/banners/shoe.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asif-daffodil/ecommerce_php/HEAD/assets/images/banners/shoe.jpg -------------------------------------------------------------------------------- /assets/images/hot-deals/p1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asif-daffodil/ecommerce_php/HEAD/assets/images/hot-deals/p1.jpg -------------------------------------------------------------------------------- /assets/images/hot-deals/p5.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asif-daffodil/ecommerce_php/HEAD/assets/images/hot-deals/p5.jpg -------------------------------------------------------------------------------- /assets/images/payments/1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asif-daffodil/ecommerce_php/HEAD/assets/images/payments/1.png -------------------------------------------------------------------------------- /assets/images/payments/2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asif-daffodil/ecommerce_php/HEAD/assets/images/payments/2.png -------------------------------------------------------------------------------- /assets/images/payments/3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asif-daffodil/ecommerce_php/HEAD/assets/images/payments/3.png -------------------------------------------------------------------------------- /assets/images/payments/4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asif-daffodil/ecommerce_php/HEAD/assets/images/payments/4.png -------------------------------------------------------------------------------- /assets/images/payments/5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asif-daffodil/ecommerce_php/HEAD/assets/images/payments/5.png -------------------------------------------------------------------------------- /assets/images/products/p1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asif-daffodil/ecommerce_php/HEAD/assets/images/products/p1.jpg -------------------------------------------------------------------------------- /assets/images/products/p10.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asif-daffodil/ecommerce_php/HEAD/assets/images/products/p10.jpg -------------------------------------------------------------------------------- /assets/images/products/p11.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asif-daffodil/ecommerce_php/HEAD/assets/images/products/p11.jpg -------------------------------------------------------------------------------- /assets/images/products/p12.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asif-daffodil/ecommerce_php/HEAD/assets/images/products/p12.jpg -------------------------------------------------------------------------------- /assets/images/products/p13.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asif-daffodil/ecommerce_php/HEAD/assets/images/products/p13.jpg -------------------------------------------------------------------------------- /assets/images/products/p14.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asif-daffodil/ecommerce_php/HEAD/assets/images/products/p14.jpg -------------------------------------------------------------------------------- /assets/images/products/p15.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asif-daffodil/ecommerce_php/HEAD/assets/images/products/p15.jpg -------------------------------------------------------------------------------- /assets/images/products/p16.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asif-daffodil/ecommerce_php/HEAD/assets/images/products/p16.jpg -------------------------------------------------------------------------------- /assets/images/products/p17.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asif-daffodil/ecommerce_php/HEAD/assets/images/products/p17.jpg -------------------------------------------------------------------------------- /assets/images/products/p18.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asif-daffodil/ecommerce_php/HEAD/assets/images/products/p18.jpg -------------------------------------------------------------------------------- /assets/images/products/p19.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asif-daffodil/ecommerce_php/HEAD/assets/images/products/p19.jpg -------------------------------------------------------------------------------- /assets/images/products/p2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asif-daffodil/ecommerce_php/HEAD/assets/images/products/p2.jpg -------------------------------------------------------------------------------- /assets/images/products/p20.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asif-daffodil/ecommerce_php/HEAD/assets/images/products/p20.jpg -------------------------------------------------------------------------------- /assets/images/products/p21.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asif-daffodil/ecommerce_php/HEAD/assets/images/products/p21.jpg -------------------------------------------------------------------------------- /assets/images/products/p22.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asif-daffodil/ecommerce_php/HEAD/assets/images/products/p22.jpg -------------------------------------------------------------------------------- /assets/images/products/p23.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asif-daffodil/ecommerce_php/HEAD/assets/images/products/p23.jpg -------------------------------------------------------------------------------- /assets/images/products/p24.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asif-daffodil/ecommerce_php/HEAD/assets/images/products/p24.jpg -------------------------------------------------------------------------------- /assets/images/products/p25.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asif-daffodil/ecommerce_php/HEAD/assets/images/products/p25.jpg -------------------------------------------------------------------------------- /assets/images/products/p26.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asif-daffodil/ecommerce_php/HEAD/assets/images/products/p26.jpg -------------------------------------------------------------------------------- /assets/images/products/p27.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asif-daffodil/ecommerce_php/HEAD/assets/images/products/p27.jpg -------------------------------------------------------------------------------- /assets/images/products/p28.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asif-daffodil/ecommerce_php/HEAD/assets/images/products/p28.jpg -------------------------------------------------------------------------------- /assets/images/products/p29.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asif-daffodil/ecommerce_php/HEAD/assets/images/products/p29.jpg -------------------------------------------------------------------------------- /assets/images/products/p3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asif-daffodil/ecommerce_php/HEAD/assets/images/products/p3.jpg -------------------------------------------------------------------------------- /assets/images/products/p30.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asif-daffodil/ecommerce_php/HEAD/assets/images/products/p30.jpg -------------------------------------------------------------------------------- /assets/images/products/p4.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asif-daffodil/ecommerce_php/HEAD/assets/images/products/p4.jpg -------------------------------------------------------------------------------- /assets/images/products/p5.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asif-daffodil/ecommerce_php/HEAD/assets/images/products/p5.jpg -------------------------------------------------------------------------------- /assets/images/products/p6.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asif-daffodil/ecommerce_php/HEAD/assets/images/products/p6.jpg -------------------------------------------------------------------------------- /assets/images/products/p7.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asif-daffodil/ecommerce_php/HEAD/assets/images/products/p7.jpg -------------------------------------------------------------------------------- /assets/images/products/p8.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asif-daffodil/ecommerce_php/HEAD/assets/images/products/p8.jpg -------------------------------------------------------------------------------- /assets/images/products/p9.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asif-daffodil/ecommerce_php/HEAD/assets/images/products/p9.jpg -------------------------------------------------------------------------------- /assets/images/star-big-on.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asif-daffodil/ecommerce_php/HEAD/assets/images/star-big-on.png -------------------------------------------------------------------------------- /Admin/dist/img/AdminLTELogo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asif-daffodil/ecommerce_php/HEAD/Admin/dist/img/AdminLTELogo.png -------------------------------------------------------------------------------- /Admin/dist/img/user1-128x128.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asif-daffodil/ecommerce_php/HEAD/Admin/dist/img/user1-128x128.jpg -------------------------------------------------------------------------------- /Admin/dist/img/user2-160x160.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asif-daffodil/ecommerce_php/HEAD/Admin/dist/img/user2-160x160.jpg -------------------------------------------------------------------------------- /Admin/dist/img/user3-128x128.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asif-daffodil/ecommerce_php/HEAD/Admin/dist/img/user3-128x128.jpg -------------------------------------------------------------------------------- /Admin/dist/img/user8-128x128.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asif-daffodil/ecommerce_php/HEAD/Admin/dist/img/user8-128x128.jpg -------------------------------------------------------------------------------- /assets/css/images/star-small.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asif-daffodil/ecommerce_php/HEAD/assets/css/images/star-small.png -------------------------------------------------------------------------------- /assets/images/brands/brand1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asif-daffodil/ecommerce_php/HEAD/assets/images/brands/brand1.png -------------------------------------------------------------------------------- /assets/images/brands/brand2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asif-daffodil/ecommerce_php/HEAD/assets/images/brands/brand2.png -------------------------------------------------------------------------------- /assets/images/brands/brand3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asif-daffodil/ecommerce_php/HEAD/assets/images/brands/brand3.png -------------------------------------------------------------------------------- /assets/images/brands/brand4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asif-daffodil/ecommerce_php/HEAD/assets/images/brands/brand4.png -------------------------------------------------------------------------------- /assets/images/brands/brand5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asif-daffodil/ecommerce_php/HEAD/assets/images/brands/brand5.png -------------------------------------------------------------------------------- /assets/images/brands/brand6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asif-daffodil/ecommerce_php/HEAD/assets/images/brands/brand6.png -------------------------------------------------------------------------------- /assets/images/hot-deals/p10.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asif-daffodil/ecommerce_php/HEAD/assets/images/hot-deals/p10.jpg -------------------------------------------------------------------------------- /assets/images/hot-deals/p25.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asif-daffodil/ecommerce_php/HEAD/assets/images/hot-deals/p25.jpg -------------------------------------------------------------------------------- /assets/images/sliders/slide1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asif-daffodil/ecommerce_php/HEAD/assets/images/sliders/slide1.jpg -------------------------------------------------------------------------------- /assets/images/sliders/slide2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asif-daffodil/ecommerce_php/HEAD/assets/images/sliders/slide2.jpg -------------------------------------------------------------------------------- /Admin/dist/img/default-150x150.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asif-daffodil/ecommerce_php/HEAD/Admin/dist/img/default-150x150.png -------------------------------------------------------------------------------- /assets/images/blog-post/blog_hp.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asif-daffodil/ecommerce_php/HEAD/assets/images/blog-post/blog_hp.jpg -------------------------------------------------------------------------------- /assets/images/blog-post/post1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asif-daffodil/ecommerce_php/HEAD/assets/images/blog-post/post1.jpg -------------------------------------------------------------------------------- /assets/images/blog-post/post2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asif-daffodil/ecommerce_php/HEAD/assets/images/blog-post/post2.jpg -------------------------------------------------------------------------------- /assets/images/products/desktop1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asif-daffodil/ecommerce_php/HEAD/assets/images/products/desktop1.jpg -------------------------------------------------------------------------------- /assets/images/products/desktop2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asif-daffodil/ecommerce_php/HEAD/assets/images/products/desktop2.jpg -------------------------------------------------------------------------------- /assets/images/products/laptop1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asif-daffodil/ecommerce_php/HEAD/assets/images/products/laptop1.jpg -------------------------------------------------------------------------------- /assets/images/products/laptop2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asif-daffodil/ecommerce_php/HEAD/assets/images/products/laptop2.jpg -------------------------------------------------------------------------------- /assets/images/products/shirt1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asif-daffodil/ecommerce_php/HEAD/assets/images/products/shirt1.jpg -------------------------------------------------------------------------------- /assets/images/products/shirt2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asif-daffodil/ecommerce_php/HEAD/assets/images/products/shirt2.jpg -------------------------------------------------------------------------------- /assets/images/products/shoes1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asif-daffodil/ecommerce_php/HEAD/assets/images/products/shoes1.jpg -------------------------------------------------------------------------------- /assets/images/products/shoes2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asif-daffodil/ecommerce_php/HEAD/assets/images/products/shoes2.jpg -------------------------------------------------------------------------------- /assets/fonts/fontawesome-webfont.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asif-daffodil/ecommerce_php/HEAD/assets/fonts/fontawesome-webfont.eot -------------------------------------------------------------------------------- /assets/fonts/fontawesome-webfont.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asif-daffodil/ecommerce_php/HEAD/assets/fonts/fontawesome-webfont.ttf -------------------------------------------------------------------------------- /assets/fonts/fontawesome-webfont.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asif-daffodil/ecommerce_php/HEAD/assets/fonts/fontawesome-webfont.woff -------------------------------------------------------------------------------- /assets/images/banners/LHS-banner.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asif-daffodil/ecommerce_php/HEAD/assets/images/banners/LHS-banner.jpg -------------------------------------------------------------------------------- /assets/images/banners/banner-side.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asif-daffodil/ecommerce_php/HEAD/assets/images/banners/banner-side.png -------------------------------------------------------------------------------- /assets/images/banners/home-banner.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asif-daffodil/ecommerce_php/HEAD/assets/images/banners/home-banner.png -------------------------------------------------------------------------------- /assets/images/blog-post/blog_dell.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asif-daffodil/ecommerce_php/HEAD/assets/images/blog-post/blog_dell.jpg -------------------------------------------------------------------------------- /assets/images/blog-post/blog_hp_1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asif-daffodil/ecommerce_php/HEAD/assets/images/blog-post/blog_hp_1.jpg -------------------------------------------------------------------------------- /assets/fonts/fontawesome-webfont.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asif-daffodil/ecommerce_php/HEAD/assets/fonts/fontawesome-webfont.woff2 -------------------------------------------------------------------------------- /assets/images/banners/cat-banner-1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asif-daffodil/ecommerce_php/HEAD/assets/images/banners/cat-banner-1.jpg -------------------------------------------------------------------------------- /assets/images/banners/home-banner1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asif-daffodil/ecommerce_php/HEAD/assets/images/banners/home-banner1.jpg -------------------------------------------------------------------------------- /assets/images/banners/home-banner2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asif-daffodil/ecommerce_php/HEAD/assets/images/banners/home-banner2.jpg -------------------------------------------------------------------------------- /assets/images/blog-post/blog_big_01.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asif-daffodil/ecommerce_php/HEAD/assets/images/blog-post/blog_big_01.jpg -------------------------------------------------------------------------------- /assets/images/blog-post/blog_big_02.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asif-daffodil/ecommerce_php/HEAD/assets/images/blog-post/blog_big_02.jpg -------------------------------------------------------------------------------- /assets/images/blog-post/blog_big_03.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asif-daffodil/ecommerce_php/HEAD/assets/images/blog-post/blog_big_03.jpg -------------------------------------------------------------------------------- /assets/images/blog-post/blog_dell_1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asif-daffodil/ecommerce_php/HEAD/assets/images/blog-post/blog_dell_1.jpg -------------------------------------------------------------------------------- /assets/images/owl-carousel/grabbing.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asif-daffodil/ecommerce_php/HEAD/assets/images/owl-carousel/grabbing.png -------------------------------------------------------------------------------- /assets/images/testimonials/member1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asif-daffodil/ecommerce_php/HEAD/assets/images/testimonials/member1.png -------------------------------------------------------------------------------- /assets/images/testimonials/member2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asif-daffodil/ecommerce_php/HEAD/assets/images/testimonials/member2.png -------------------------------------------------------------------------------- /assets/images/testimonials/member3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asif-daffodil/ecommerce_php/HEAD/assets/images/testimonials/member3.png -------------------------------------------------------------------------------- /assets/images/testimonials/member4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asif-daffodil/ecommerce_php/HEAD/assets/images/testimonials/member4.png -------------------------------------------------------------------------------- /assets/images/banners/top-menu-banner.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asif-daffodil/ecommerce_php/HEAD/assets/images/banners/top-menu-banner.jpg -------------------------------------------------------------------------------- /assets/images/owl-carousel/AjaxLoader.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asif-daffodil/ecommerce_php/HEAD/assets/images/owl-carousel/AjaxLoader.gif -------------------------------------------------------------------------------- /assets/fonts/glyphicons-halflings-regular.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asif-daffodil/ecommerce_php/HEAD/assets/fonts/glyphicons-halflings-regular.eot -------------------------------------------------------------------------------- /assets/fonts/glyphicons-halflings-regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asif-daffodil/ecommerce_php/HEAD/assets/fonts/glyphicons-halflings-regular.ttf -------------------------------------------------------------------------------- /assets/fonts/glyphicons-halflings-regular.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asif-daffodil/ecommerce_php/HEAD/assets/fonts/glyphicons-halflings-regular.woff -------------------------------------------------------------------------------- /Admin/plugins/fontawesome-free/webfonts/fa-brands-400.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asif-daffodil/ecommerce_php/HEAD/Admin/plugins/fontawesome-free/webfonts/fa-brands-400.eot -------------------------------------------------------------------------------- /Admin/plugins/fontawesome-free/webfonts/fa-brands-400.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asif-daffodil/ecommerce_php/HEAD/Admin/plugins/fontawesome-free/webfonts/fa-brands-400.ttf -------------------------------------------------------------------------------- /Admin/plugins/fontawesome-free/webfonts/fa-solid-900.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asif-daffodil/ecommerce_php/HEAD/Admin/plugins/fontawesome-free/webfonts/fa-solid-900.eot -------------------------------------------------------------------------------- /Admin/plugins/fontawesome-free/webfonts/fa-solid-900.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asif-daffodil/ecommerce_php/HEAD/Admin/plugins/fontawesome-free/webfonts/fa-solid-900.ttf -------------------------------------------------------------------------------- /Admin/plugins/fontawesome-free/webfonts/fa-solid-900.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asif-daffodil/ecommerce_php/HEAD/Admin/plugins/fontawesome-free/webfonts/fa-solid-900.woff -------------------------------------------------------------------------------- /Admin/plugins/fontawesome-free/webfonts/fa-brands-400.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asif-daffodil/ecommerce_php/HEAD/Admin/plugins/fontawesome-free/webfonts/fa-brands-400.woff -------------------------------------------------------------------------------- /Admin/plugins/fontawesome-free/webfonts/fa-brands-400.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asif-daffodil/ecommerce_php/HEAD/Admin/plugins/fontawesome-free/webfonts/fa-brands-400.woff2 -------------------------------------------------------------------------------- /Admin/plugins/fontawesome-free/webfonts/fa-regular-400.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asif-daffodil/ecommerce_php/HEAD/Admin/plugins/fontawesome-free/webfonts/fa-regular-400.eot -------------------------------------------------------------------------------- /Admin/plugins/fontawesome-free/webfonts/fa-regular-400.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asif-daffodil/ecommerce_php/HEAD/Admin/plugins/fontawesome-free/webfonts/fa-regular-400.ttf -------------------------------------------------------------------------------- /Admin/plugins/fontawesome-free/webfonts/fa-regular-400.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asif-daffodil/ecommerce_php/HEAD/Admin/plugins/fontawesome-free/webfonts/fa-regular-400.woff -------------------------------------------------------------------------------- /Admin/plugins/fontawesome-free/webfonts/fa-regular-400.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asif-daffodil/ecommerce_php/HEAD/Admin/plugins/fontawesome-free/webfonts/fa-regular-400.woff2 -------------------------------------------------------------------------------- /Admin/plugins/fontawesome-free/webfonts/fa-solid-900.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asif-daffodil/ecommerce_php/HEAD/Admin/plugins/fontawesome-free/webfonts/fa-solid-900.woff2 -------------------------------------------------------------------------------- /Admin/rightSidebar.php: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /.htaccess: -------------------------------------------------------------------------------- 1 | RewriteEngine On 2 | 3 | 4 | RewriteBase / 5 | 6 | RewriteCond %{REQUEST_FILENAME} !-f 7 | 8 | 9 | RewriteCond %{REQUEST_FILENAME} !-d 10 | 11 | RewriteCond %{REQUEST_FILENAME}.php -f 12 | 13 | RewriteRule ^(.+)$ /$1.php [L,QSA] -------------------------------------------------------------------------------- /Admin/bradcams.php: -------------------------------------------------------------------------------- 1 |
2 |
3 |
4 |
5 |

Dashboard

6 |
7 |
8 | 12 |
13 |
14 |
15 |
-------------------------------------------------------------------------------- /Admin/plugins/fontawesome-free/css/solid.min.css: -------------------------------------------------------------------------------- 1 | /*! 2 | * Font Awesome Free 5.15.4 by @fontawesome - https://fontawesome.com 3 | * License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) 4 | */ 5 | @font-face{font-family:"Font Awesome 5 Free";font-style:normal;font-weight:900;font-display:block;src:url(../webfonts/fa-solid-900.eot);src:url(../webfonts/fa-solid-900.eot?#iefix) format("embedded-opentype"),url(../webfonts/fa-solid-900.woff2) format("woff2"),url(../webfonts/fa-solid-900.woff) format("woff"),url(../webfonts/fa-solid-900.ttf) format("truetype"),url(../webfonts/fa-solid-900.svg#fontawesome) format("svg")}.fa,.fas{font-family:"Font Awesome 5 Free";font-weight:900} -------------------------------------------------------------------------------- /Admin/plugins/fontawesome-free/css/brands.min.css: -------------------------------------------------------------------------------- 1 | /*! 2 | * Font Awesome Free 5.15.4 by @fontawesome - https://fontawesome.com 3 | * License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) 4 | */ 5 | @font-face{font-family:"Font Awesome 5 Brands";font-style:normal;font-weight:400;font-display:block;src:url(../webfonts/fa-brands-400.eot);src:url(../webfonts/fa-brands-400.eot?#iefix) format("embedded-opentype"),url(../webfonts/fa-brands-400.woff2) format("woff2"),url(../webfonts/fa-brands-400.woff) format("woff"),url(../webfonts/fa-brands-400.ttf) format("truetype"),url(../webfonts/fa-brands-400.svg#fontawesome) format("svg")}.fab{font-family:"Font Awesome 5 Brands";font-weight:400} -------------------------------------------------------------------------------- /Admin/plugins/fontawesome-free/css/regular.min.css: -------------------------------------------------------------------------------- 1 | /*! 2 | * Font Awesome Free 5.15.4 by @fontawesome - https://fontawesome.com 3 | * License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) 4 | */ 5 | @font-face{font-family:"Font Awesome 5 Free";font-style:normal;font-weight:400;font-display:block;src:url(../webfonts/fa-regular-400.eot);src:url(../webfonts/fa-regular-400.eot?#iefix) format("embedded-opentype"),url(../webfonts/fa-regular-400.woff2) format("woff2"),url(../webfonts/fa-regular-400.woff) format("woff"),url(../webfonts/fa-regular-400.ttf) format("truetype"),url(../webfonts/fa-regular-400.svg#fontawesome) format("svg")}.far{font-family:"Font Awesome 5 Free";font-weight:400} -------------------------------------------------------------------------------- /Admin/plugins/fontawesome-free/css/brands.css: -------------------------------------------------------------------------------- 1 | /*! 2 | * Font Awesome Free 5.15.4 by @fontawesome - https://fontawesome.com 3 | * License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) 4 | */ 5 | @font-face { 6 | font-family: 'Font Awesome 5 Brands'; 7 | font-style: normal; 8 | font-weight: 400; 9 | font-display: block; 10 | src: url("../webfonts/fa-brands-400.eot"); 11 | src: url("../webfonts/fa-brands-400.eot?#iefix") format("embedded-opentype"), url("../webfonts/fa-brands-400.woff2") format("woff2"), url("../webfonts/fa-brands-400.woff") format("woff"), url("../webfonts/fa-brands-400.ttf") format("truetype"), url("../webfonts/fa-brands-400.svg#fontawesome") format("svg"); } 12 | 13 | .fab { 14 | font-family: 'Font Awesome 5 Brands'; 15 | font-weight: 400; } 16 | -------------------------------------------------------------------------------- /Admin/plugins/fontawesome-free/css/solid.css: -------------------------------------------------------------------------------- 1 | /*! 2 | * Font Awesome Free 5.15.4 by @fontawesome - https://fontawesome.com 3 | * License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) 4 | */ 5 | @font-face { 6 | font-family: 'Font Awesome 5 Free'; 7 | font-style: normal; 8 | font-weight: 900; 9 | font-display: block; 10 | src: url("../webfonts/fa-solid-900.eot"); 11 | src: url("../webfonts/fa-solid-900.eot?#iefix") format("embedded-opentype"), url("../webfonts/fa-solid-900.woff2") format("woff2"), url("../webfonts/fa-solid-900.woff") format("woff"), url("../webfonts/fa-solid-900.ttf") format("truetype"), url("../webfonts/fa-solid-900.svg#fontawesome") format("svg"); } 12 | 13 | .fa, 14 | .fas { 15 | font-family: 'Font Awesome 5 Free'; 16 | font-weight: 900; } 17 | -------------------------------------------------------------------------------- /Admin/plugins/fontawesome-free/css/regular.css: -------------------------------------------------------------------------------- 1 | /*! 2 | * Font Awesome Free 5.15.4 by @fontawesome - https://fontawesome.com 3 | * License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) 4 | */ 5 | @font-face { 6 | font-family: 'Font Awesome 5 Free'; 7 | font-style: normal; 8 | font-weight: 400; 9 | font-display: block; 10 | src: url("../webfonts/fa-regular-400.eot"); 11 | src: url("../webfonts/fa-regular-400.eot?#iefix") format("embedded-opentype"), url("../webfonts/fa-regular-400.woff2") format("woff2"), url("../webfonts/fa-regular-400.woff") format("woff"), url("../webfonts/fa-regular-400.ttf") format("truetype"), url("../webfonts/fa-regular-400.svg#fontawesome") format("svg"); } 12 | 13 | .far { 14 | font-family: 'Font Awesome 5 Free'; 15 | font-weight: 400; } 16 | -------------------------------------------------------------------------------- /404.php: -------------------------------------------------------------------------------- 1 | 2 |
3 |
4 |
5 |
6 |
7 |

404

8 |

We are sorry, the page you've requested is not available.

9 |
10 | 11 | 12 |
13 | Go To Homepage 14 |
15 |
16 |
17 |
18 |
19 | -------------------------------------------------------------------------------- /Admin/header.php: -------------------------------------------------------------------------------- 1 | 4 | 5 | 9 | 10 | 11 | 12 | 13 | Admin panel 14 | 15 | 16 | 17 | 18 | 19 | 20 | 21 | 22 | -------------------------------------------------------------------------------- /sliderBottom.php: -------------------------------------------------------------------------------- 1 | 6 | 7 |
8 | sliderBottom(); 10 | 11 | ?> 12 |
13 |
14 | 15 |
16 |
17 |
18 |
19 |

20 |
21 |
22 |
23 |
24 |
25 | 26 |
27 |
28 |
29 | -------------------------------------------------------------------------------- /Admin/footer.php: -------------------------------------------------------------------------------- 1 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 | 20 | 21 | 22 | 23 | 38 | 39 | -------------------------------------------------------------------------------- /Admin/admindb.php: -------------------------------------------------------------------------------- 1 | query("SELECT * FROM `products`"); 6 | 7 | echo json_encode($allProducts->fetch_all(MYSQLI_ASSOC)); 8 | } 9 | 10 | if (isset($_GET['allcats'])) { 11 | $allCats = $conn->query("SELECT * FROM `product_category`"); 12 | 13 | echo json_encode($allCats->fetch_all(MYSQLI_ASSOC)); 14 | } 15 | 16 | if (isset($_GET['addCat'])) { 17 | if($_SERVER['REQUEST_METHOD'] === 'POST'){ 18 | $addCat = $_POST['addCat']; 19 | $addCatIcon = $_POST['addCatIcon']; 20 | $msg = []; 21 | $addNerCats = $conn->query("INSERT INTO `product_category` (`name`, `icon`) VALUES ('$addCat', '$addCatIcon')"); 22 | if(!$addNerCats){ 23 | $msg["err"] = "Something went wrong"; 24 | }else{ 25 | $msg["success"] = "Category added successfully"; 26 | } 27 | echo json_encode($msg); 28 | } 29 | } 30 | ?> -------------------------------------------------------------------------------- /Admin/index.php: -------------------------------------------------------------------------------- 1 | 2 |
3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 |
13 | 14 | 21 | 22 | 23 | 24 |
25 |
26 |
27 | 28 |
29 | 30 |
31 |
32 | 33 |
34 | 35 | 36 | 37 | 38 | 39 | 40 | 41 | 42 | -------------------------------------------------------------------------------- /slider.php: -------------------------------------------------------------------------------- 1 | 6 | 7 | 8 | 9 |
10 | slider(); 12 | ?> 13 | 31 | 32 |
-------------------------------------------------------------------------------- /Admin/dist/js/.eslintrc.json: -------------------------------------------------------------------------------- 1 | { 2 | "root": true, 3 | "parserOptions": { 4 | "ecmaVersion": 5, 5 | "sourceType": "script" 6 | }, 7 | "env": { 8 | "jquery": true 9 | }, 10 | "extends": [ 11 | "plugin:unicorn/recommended", 12 | "xo", 13 | "xo/browser" 14 | ], 15 | "rules": { 16 | "capitalized-comments": "off", 17 | "comma-dangle": [ 18 | "error", 19 | "never" 20 | ], 21 | "indent": [ 22 | "error", 23 | 2, 24 | { 25 | "MemberExpression": "off", 26 | "SwitchCase": 1 27 | } 28 | ], 29 | "multiline-ternary": [ 30 | "error", 31 | "always-multiline" 32 | ], 33 | "no-var": "off", 34 | "object-curly-spacing": [ 35 | "error", 36 | "always" 37 | ], 38 | "object-shorthand": "off", 39 | "prefer-arrow-callback": "off", 40 | "semi": [ 41 | "error", 42 | "never" 43 | ], 44 | "strict": "error", 45 | "unicorn/no-array-for-each": "off", 46 | "unicorn/no-for-loop": "off", 47 | "unicorn/no-null": "off", 48 | "unicorn/numeric-separators-style": "off", 49 | "unicorn/prefer-dataset": "off", 50 | "unicorn/prefer-includes": "off", 51 | "unicorn/prefer-module": "off", 52 | "unicorn/prefer-node-append": "off", 53 | "unicorn/prefer-query-selector": "off", 54 | "unicorn/prefer-spread": "off", 55 | "unicorn/prevent-abbreviations": "off" 56 | } 57 | } 58 | -------------------------------------------------------------------------------- /assets/js/bootstrap-hover-dropdown.min.js: -------------------------------------------------------------------------------- 1 | /** 2 | * @preserve 3 | * Project: Bootstrap Hover Dropdown 4 | * Author: Cameron Spear 5 | * Version: v2.0.11 6 | * Contributors: Mattia Larentis 7 | * Dependencies: Bootstrap's Dropdown plugin, jQuery 8 | * Description: A simple plugin to enable Bootstrap dropdowns to active on hover and provide a nice user experience. 9 | * License: MIT 10 | * Homepage: http://cameronspear.com/blog/bootstrap-dropdown-on-hover-plugin/ 11 | */ 12 | !function($,n,e){var o=$();$.fn.dropdownHover=function(e){return"ontouchstart"in document?this:(o=o.add(this.parent()),this.each(function(){function t(e){o.find(":focus").blur(),h.instantlyCloseOthers===!0&&o.removeClass("open"),n.clearTimeout(c),i.addClass("open"),r.trigger(a)}var r=$(this),i=r.parent(),d={delay:500,instantlyCloseOthers:!0},s={delay:$(this).data("delay"),instantlyCloseOthers:$(this).data("close-others")},a="show.bs.dropdown",u="hide.bs.dropdown",h=$.extend(!0,{},d,e,s),c;i.hover(function(n){return i.hasClass("open")||r.is(n.target)?void t(n):!0},function(){c=n.setTimeout(function(){i.removeClass("open"),r.trigger(u)},h.delay)}),r.hover(function(n){return i.hasClass("open")||i.is(n.target)?void t(n):!0}),i.find(".dropdown-submenu").each(function(){var e=$(this),o;e.hover(function(){n.clearTimeout(o),e.children(".dropdown-menu").show(),e.siblings().children(".dropdown-menu").hide()},function(){var t=e.children(".dropdown-menu");o=n.setTimeout(function(){t.hide()},h.delay)})})}))},$(document).ready(function(){$('[data-hover="dropdown"]').dropdownHover()})}(jQuery,this); -------------------------------------------------------------------------------- /assets/js/echo.min.js: -------------------------------------------------------------------------------- 1 | /*! echo.js v1.6.0 | (c) 2014 @toddmotto | https://github.com/toddmotto/echo */ 2 | !function(t,e){"function"==typeof define&&define.amd?define(function(){return e(t)}):"object"==typeof exports?module.exports=e:t.echo=e(t)}(this,function(t){"use strict";var e,n,o,r,c,i={},l=function(){},a=function(t,e){var n=t.getBoundingClientRect();return n.right>=e.l&&n.bottom>=e.t&&n.left<=e.r&&n.top<=e.b},d=function(){(r||!n)&&(clearTimeout(n),n=setTimeout(function(){i.render(),n=null},o))};return i.init=function(n){n=n||{};var a=n.offset||0,u=n.offsetVertical||a,f=n.offsetHorizontal||a,s=function(t,e){return parseInt(t||e,10)};e={t:s(n.offsetTop,u),b:s(n.offsetBottom,u),l:s(n.offsetLeft,f),r:s(n.offsetRight,f)},o=s(n.throttle,250),r=n.debounce!==!1,c=!!n.unload,l=n.callback||l,i.render(),document.addEventListener?(t.addEventListener("scroll",d,!1),t.addEventListener("load",d,!1)):(t.attachEvent("onscroll",d),t.attachEvent("onload",d))},i.render=function(){for(var n,o,r=document.querySelectorAll("img[data-echo]"),d=r.length,u={l:0-e.l,t:0-e.t,b:(t.innerHeight||document.documentElement.clientHeight)+e.b,r:(t.innerWidth||document.documentElement.clientWidth)+e.r},f=0;d>f;f++)o=r[f],a(o,u)?(c&&o.setAttribute("data-echo-placeholder",o.src),o.src=o.getAttribute("data-echo"),c||o.removeAttribute("data-echo"),l(o,"load")):c&&(n=o.getAttribute("data-echo-placeholder"))&&(o.src=n,o.removeAttribute("data-echo-placeholder"),l(o,"unload"));d||i.detach()},i.detach=function(){document.removeEventListener?t.removeEventListener("scroll",d):t.detachEvent("onscroll",d),clearTimeout(n)},i}); -------------------------------------------------------------------------------- /header.php: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | Flipmart premium HTML5 & CSS3 Template 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 | 20 | 21 | 22 | 23 | 24 | 25 | 26 | 27 | 28 | 29 | 30 | 31 | 32 | 33 | 34 | 35 | -------------------------------------------------------------------------------- /assets/css/owl.carousel.css: -------------------------------------------------------------------------------- 1 | /* 2 | * Core Owl Carousel CSS File 3 | * v1.3.3 4 | */ 5 | 6 | /* clearfix */ 7 | .owl-carousel .owl-wrapper:after { 8 | content: "."; 9 | display: block; 10 | clear: both; 11 | visibility: hidden; 12 | line-height: 0; 13 | height: 0; 14 | } 15 | /* display none until init */ 16 | .owl-carousel{ 17 | display: none; 18 | position: relative; 19 | width: 100%; 20 | -ms-touch-action: pan-y; 21 | } 22 | .owl-carousel .owl-wrapper{ 23 | display: none; 24 | position: relative; 25 | -webkit-transform: translate3d(0px, 0px, 0px); 26 | } 27 | .owl-carousel .owl-wrapper-outer{ 28 | overflow: hidden; 29 | position: relative; 30 | width: 100%; 31 | } 32 | .owl-carousel .owl-wrapper-outer.autoHeight{ 33 | -webkit-transition: height 500ms ease-in-out; 34 | -moz-transition: height 500ms ease-in-out; 35 | -ms-transition: height 500ms ease-in-out; 36 | -o-transition: height 500ms ease-in-out; 37 | transition: height 500ms ease-in-out; 38 | } 39 | 40 | .owl-carousel .owl-item{ 41 | float: left; 42 | } 43 | .owl-controls .owl-page, 44 | .owl-controls .owl-buttons div{ 45 | cursor: pointer; 46 | } 47 | .owl-controls { 48 | -webkit-user-select: none; 49 | -khtml-user-select: none; 50 | -moz-user-select: none; 51 | -ms-user-select: none; 52 | user-select: none; 53 | -webkit-tap-highlight-color: rgba(0, 0, 0, 0); 54 | } 55 | 56 | /* mouse grab icon */ 57 | .grabbing { 58 | cursor:url(grabbing.png) 8 8, move; 59 | } 60 | 61 | /* fix */ 62 | .owl-carousel .owl-wrapper, 63 | .owl-carousel .owl-item{ 64 | -webkit-backface-visibility: hidden; 65 | -moz-backface-visibility: hidden; 66 | -ms-backface-visibility: hidden; 67 | -webkit-transform: translate3d(0,0,0); 68 | -moz-transform: translate3d(0,0,0); 69 | -ms-transform: translate3d(0,0,0); 70 | } 71 | 72 | -------------------------------------------------------------------------------- /navTop.php: -------------------------------------------------------------------------------- 1 |
2 |
3 |
4 | 13 | 14 | 15 |
16 | 32 | 33 |
34 | 35 |
36 |
37 | 38 |
39 | 40 |
41 | -------------------------------------------------------------------------------- /login.php: -------------------------------------------------------------------------------- 1 | 2 | 14 | 15 | 16 |
17 |
18 | 69 |
70 | 71 |
72 | 73 | 74 | -------------------------------------------------------------------------------- /newArriavls.php: -------------------------------------------------------------------------------- 1 |
2 |

New Arrivals

3 | 4 | 50 | 51 | 52 |
-------------------------------------------------------------------------------- /hotDeals.php: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /assets/css/rateit.css: -------------------------------------------------------------------------------- 1 | 2 | /*===================================================================================*/ 3 | /* Rating CSS 4 | /*===================================================================================*/ 5 | 6 | .rateit { 7 | display: -moz-inline-box; 8 | display: inline-block; 9 | position: relative; 10 | -webkit-user-select: none; 11 | -khtml-user-select: none; 12 | -moz-user-select: none; 13 | -o-user-select: none; 14 | -ms-user-select: none; 15 | user-select: none; 16 | -webkit-touch-callout: none; 17 | } 18 | 19 | .rateit .rateit-range 20 | { 21 | position: relative; 22 | display: -moz-inline-box; 23 | display: inline-block; 24 | background: url(images/star.gif); 25 | height: 14px; 26 | outline: none; 27 | } 28 | 29 | .rateit-small .rateit-range 30 | { 31 | position: relative; 32 | display: -moz-inline-box; 33 | display: inline-block; 34 | background: url(images/star-small.png); 35 | height: 14px; 36 | outline: none; 37 | } 38 | 39 | .rateit .rateit-range * { 40 | display:block; 41 | } 42 | 43 | /* for IE 6 */ 44 | * html .rateit, * html .rateit .rateit-range 45 | { 46 | display: inline; 47 | } 48 | 49 | /* for IE 7 */ 50 | * + html .rateit, * + html .rateit .rateit-range 51 | { 52 | display: inline; 53 | } 54 | 55 | .rateit .rateit-hover, .rateit .rateit-selected 56 | { 57 | position: absolute; 58 | left: 0px; 59 | } 60 | 61 | .rateit .rateit-hover-rtl, .rateit .rateit-selected-rtl 62 | { 63 | left: auto; 64 | right: 0px; 65 | } 66 | 67 | .rateit .rateit-hover 68 | { 69 | background: url(images/star.gif) left -28px; 70 | } 71 | 72 | .rateit-small .rateit-hover 73 | { 74 | background: url(images/star-small.png) left -328px; 75 | } 76 | 77 | .rateit .rateit-hover-rtl 78 | { 79 | background-position: right -28px; 80 | } 81 | 82 | .rateit .rateit-selected 83 | { 84 | background: url(images/star.gif) left -14px; 85 | } 86 | 87 | .rateit-small .rateit-selected 88 | { 89 | background: url(images/star-small.png) left -14px; 90 | } 91 | 92 | .rateit .rateit-selected-rtl 93 | { 94 | background-position: right -14px; 95 | } 96 | 97 | .rateit .rateit-preset 98 | { 99 | background: url(images/star.gif) left -48px; 100 | } 101 | 102 | .rateit .rateit-preset-rtl 103 | { 104 | background: url(images/star.gif) left -48px; 105 | } 106 | 107 | .rateit-small .rateit-preset 108 | { 109 | background: url(images/star-small.png) left -48px; 110 | } 111 | 112 | .rateit-small .rateit-preset-rtl 113 | { 114 | background: url(images/star-small.png) left -48px; 115 | } 116 | 117 | .rateit button.rateit-reset 118 | { 119 | background: url(images/delete.gif) 0 0; 120 | width: 14px; 121 | height: 14px; 122 | display: -moz-inline-box; 123 | display: inline-block; 124 | float: left; 125 | outline: none; 126 | border:none; 127 | padding: 0; 128 | } 129 | 130 | .rateit button.rateit-reset:hover, .rateit button.rateit-reset:focus 131 | { 132 | background-position: 0 -14px; 133 | } 134 | -------------------------------------------------------------------------------- /bestSeller.php: -------------------------------------------------------------------------------- 1 |
2 |

Best seller

3 | -------------------------------------------------------------------------------- /Admin/sidebar.php: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /featuredProduct.php: -------------------------------------------------------------------------------- 1 | 2 | 72 | -------------------------------------------------------------------------------- /Database.php: -------------------------------------------------------------------------------- 1 | connection = new PDO("mysql:host=$this->hostName;dbname=$this->dbName", $this->dbUserName , $this->dbPassWord); 12 | if($this->connection){ 13 | //echo 'Connected'; 14 | }else{ 15 | echo 'error'; 16 | } 17 | } 18 | //main menu product category 19 | public function proCategory(){ 20 | $query = "SELECT * FROM `product_category`"; 21 | $satemant = $this->connection->prepare($query); 22 | $satemant->execute(); 23 | $result = $satemant->fetchAll(); 24 | return $result; 25 | } 26 | 27 | //main menu product sub category 28 | public function proSubCategory($id){ 29 | $query = "SELECT * FROM `sub_category` WHERE `category_id`=$id"; 30 | $satemant = $this->connection->prepare($query); 31 | $satemant->execute(); 32 | $result = $satemant->fetchAll(); 33 | return $result; 34 | } 35 | 36 | //main menu product sub category 37 | 38 | public function proSubSubCategory($id){ 39 | $query = "SELECT * FROM `sub_sub_category` WHERE `sub_cat_id`=$id"; 40 | $satemant = $this->connection->prepare($query); 41 | $satemant->execute(); 42 | $result = $satemant->fetchAll(); 43 | return $result; 44 | } 45 | 46 | //slider 47 | public function slider(){ 48 | $query = "SELECT * FROM `slider`"; 49 | $satemant = $this->connection->prepare($query); 50 | $satemant->execute(); 51 | $result = $satemant->fetchAll(); 52 | return $result; 53 | } 54 | //slider bottom 55 | public function sliderBottom(){ 56 | $query = "SELECT * FROM `slider-bottom`"; 57 | $satemant = $this->connection->prepare($query); 58 | $satemant->execute(); 59 | $result = $satemant->fetchAll(); 60 | return $result; 61 | } 62 | 63 | //new producgts 64 | public function newProCategory(){ 65 | $query = "SELECT * FROM `product_category` LIMIT 2"; 66 | $satemant = $this->connection->prepare($query); 67 | $satemant->execute(); 68 | $result = $satemant->fetchAll(); 69 | return $result; 70 | } 71 | //all products 72 | public function products(){ 73 | $query = "SELECT * FROM `products`"; 74 | $satemant = $this->connection->prepare($query); 75 | $satemant->execute(); 76 | $result = $satemant->fetchAll(); 77 | return $result; 78 | } 79 | 80 | public function newProducts($id){ 81 | $query = "SELECT * FROM `products` WHERE `category_id`=$id LIMIT 6"; 82 | $satemant = $this->connection->prepare($query); 83 | $satemant->execute(); 84 | $result = $satemant->fetchAll(); 85 | return $result; 86 | } 87 | //new arrivals 88 | public function newArrivals(){ 89 | $query = "SELECT * FROM `products` ORDER BY `created_at` DESC"; 90 | $satemant = $this->connection->prepare($query); 91 | $satemant->execute(); 92 | $result = $satemant->fetchAll(); 93 | return $result; 94 | } 95 | //best seller 96 | public function bestSeller(){ 97 | $query = "SELECT * FROM `products` ORDER BY RAND()"; 98 | $satemant = $this->connection->prepare($query); 99 | $satemant->execute(); 100 | $result = $satemant->fetchAll(); 101 | return $result; 102 | } 103 | //blog post 104 | public function blogPost(){ 105 | $query = "SELECT * FROM `blog`"; 106 | $satemant = $this->connection->prepare($query); 107 | $satemant->execute(); 108 | $result = $satemant->fetchAll(); 109 | return $result; 110 | } 111 | //single post 112 | public function viewSinglePost($id){ 113 | $query = "SELECT * FROM `blog` WHERE id=".$id; 114 | $statement = $this->connection->prepare($query); 115 | $statement->execute(); 116 | $result = $statement->fetchAll(); 117 | return $result; 118 | } 119 | } 120 | 121 | ?> -------------------------------------------------------------------------------- /track-orders.php: -------------------------------------------------------------------------------- 1 | 2 | 12 | 13 |
14 |
15 |
16 |
17 |
18 |

Track your Order

19 | Please enter your Order ID in the box below and press Enter. This was given to you on your receipt and in the confirmation email you should have received. 20 |
21 |
22 | 23 | 24 |
25 |
26 | 27 | 28 |
29 | 30 |
31 |
32 |
33 | 34 | 101 |
102 |
103 | -------------------------------------------------------------------------------- /assets/css/lightbox.css: -------------------------------------------------------------------------------- 1 | /* Preload images */ 2 | body:after { 3 | content: url(../images/close.png) url(../images/loading.gif) url(../images/prev.png) url(../images/next.png); 4 | display: none; 5 | } 6 | 7 | .lightboxOverlay { 8 | position: absolute; 9 | top: 0; 10 | left: 0; 11 | z-index: 9999; 12 | background-color: black; 13 | filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=80); 14 | opacity: 0.8; 15 | display: none; 16 | } 17 | 18 | .lightbox { 19 | position: absolute; 20 | left: 0; 21 | width: 100%; 22 | z-index: 10000; 23 | text-align: center; 24 | line-height: 0; 25 | font-weight: normal; 26 | } 27 | 28 | .lightbox .lb-image { 29 | display: block; 30 | height: auto; 31 | max-width: inherit; 32 | -webkit-border-radius: 3px; 33 | -moz-border-radius: 3px; 34 | -ms-border-radius: 3px; 35 | -o-border-radius: 3px; 36 | border-radius: 3px; 37 | } 38 | 39 | .lightbox a img { 40 | border: none; 41 | } 42 | 43 | .lb-outerContainer { 44 | position: relative; 45 | background-color: white; 46 | *zoom: 1; 47 | width: 250px; 48 | height: 250px; 49 | margin: 0 auto; 50 | -webkit-border-radius: 4px; 51 | -moz-border-radius: 4px; 52 | -ms-border-radius: 4px; 53 | -o-border-radius: 4px; 54 | border-radius: 4px; 55 | } 56 | 57 | .lb-outerContainer:after { 58 | content: ""; 59 | display: table; 60 | clear: both; 61 | } 62 | 63 | .lb-container { 64 | padding: 4px; 65 | } 66 | 67 | .lb-loader { 68 | position: absolute; 69 | top: 43%; 70 | left: 0; 71 | height: 25%; 72 | width: 100%; 73 | text-align: center; 74 | line-height: 0; 75 | } 76 | 77 | .lb-cancel { 78 | display: block; 79 | width: 32px; 80 | height: 32px; 81 | margin: 0 auto; 82 | background: url(../images/loading.gif) no-repeat; 83 | } 84 | 85 | .lb-nav { 86 | position: absolute; 87 | top: 0; 88 | left: 0; 89 | height: 100%; 90 | width: 100%; 91 | z-index: 10; 92 | } 93 | 94 | .lb-container > .nav { 95 | left: 0; 96 | } 97 | 98 | .lb-nav a { 99 | outline: none; 100 | background-image: url('data:image/gif;base64,R0lGODlhAQABAPAAAP///wAAACH5BAEAAAAALAAAAAABAAEAAAICRAEAOw=='); 101 | } 102 | 103 | .lb-prev, .lb-next { 104 | height: 100%; 105 | cursor: pointer; 106 | display: block; 107 | } 108 | 109 | .lb-nav a.lb-prev { 110 | width: 34%; 111 | left: 0; 112 | float: left; 113 | background: url(../images/prev.png) left 48% no-repeat; 114 | filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=0); 115 | opacity: 0; 116 | -webkit-transition: opacity 0.6s; 117 | -moz-transition: opacity 0.6s; 118 | -o-transition: opacity 0.6s; 119 | transition: opacity 0.6s; 120 | } 121 | 122 | .lb-nav a.lb-prev:hover { 123 | filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=100); 124 | opacity: 1; 125 | } 126 | 127 | .lb-nav a.lb-next { 128 | width: 64%; 129 | right: 0; 130 | float: right; 131 | background: url(../images/next.png) right 48% no-repeat; 132 | filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=0); 133 | opacity: 0; 134 | -webkit-transition: opacity 0.6s; 135 | -moz-transition: opacity 0.6s; 136 | -o-transition: opacity 0.6s; 137 | transition: opacity 0.6s; 138 | } 139 | 140 | .lb-nav a.lb-next:hover { 141 | filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=100); 142 | opacity: 1; 143 | } 144 | 145 | .lb-dataContainer { 146 | margin: 0 auto; 147 | padding-top: 5px; 148 | *zoom: 1; 149 | width: 100%; 150 | -moz-border-radius-bottomleft: 4px; 151 | -webkit-border-bottom-left-radius: 4px; 152 | border-bottom-left-radius: 4px; 153 | -moz-border-radius-bottomright: 4px; 154 | -webkit-border-bottom-right-radius: 4px; 155 | border-bottom-right-radius: 4px; 156 | } 157 | 158 | .lb-dataContainer:after { 159 | content: ""; 160 | display: table; 161 | clear: both; 162 | } 163 | 164 | .lb-data { 165 | padding: 0 4px; 166 | color: #ccc; 167 | } 168 | 169 | .lb-data .lb-details { 170 | width: 85%; 171 | float: left; 172 | text-align: left; 173 | line-height: 1.1em; 174 | } 175 | 176 | .lb-data .lb-caption { 177 | font-size: 13px; 178 | font-weight: bold; 179 | line-height: 1em; 180 | } 181 | 182 | .lb-data .lb-number { 183 | display: block; 184 | clear: left; 185 | padding-bottom: 1em; 186 | font-size: 12px; 187 | color: #999999; 188 | } 189 | 190 | .lb-data .lb-close { 191 | display: block; 192 | float: right; 193 | width: 30px; 194 | height: 30px; 195 | background: url(../images/close.png) top right no-repeat; 196 | text-align: right; 197 | outline: none; 198 | filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=70); 199 | opacity: 0.7; 200 | -webkit-transition: opacity 0.2s; 201 | -moz-transition: opacity 0.2s; 202 | -o-transition: opacity 0.2s; 203 | transition: opacity 0.2s; 204 | } 205 | 206 | .lb-data .lb-close:hover { 207 | cursor: pointer; 208 | filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=100); 209 | opacity: 1; 210 | } 211 | -------------------------------------------------------------------------------- /assets/css/owl.transitions.css: -------------------------------------------------------------------------------- 1 | /* 2 | * Owl Carousel CSS3 Transitions 3 | * v1.3.2 4 | */ 5 | 6 | .owl-origin { 7 | -webkit-perspective: 1200px; 8 | -webkit-perspective-origin-x : 50%; 9 | -webkit-perspective-origin-y : 50%; 10 | -moz-perspective : 1200px; 11 | -moz-perspective-origin-x : 50%; 12 | -moz-perspective-origin-y : 50%; 13 | perspective : 1200px; 14 | } 15 | /* fade */ 16 | .owl-fade-out { 17 | z-index: 10; 18 | -webkit-animation: fadeOut .7s both ease; 19 | -moz-animation: fadeOut .7s both ease; 20 | animation: fadeOut .7s both ease; 21 | } 22 | .owl-fade-in { 23 | -webkit-animation: fadeIn .7s both ease; 24 | -moz-animation: fadeIn .7s both ease; 25 | animation: fadeIn .7s both ease; 26 | } 27 | /* backSlide */ 28 | .owl-backSlide-out { 29 | -webkit-animation: backSlideOut 1s both ease; 30 | -moz-animation: backSlideOut 1s both ease; 31 | animation: backSlideOut 1s both ease; 32 | } 33 | .owl-backSlide-in { 34 | -webkit-animation: backSlideIn 1s both ease; 35 | -moz-animation: backSlideIn 1s both ease; 36 | animation: backSlideIn 1s both ease; 37 | } 38 | /* goDown */ 39 | .owl-goDown-out { 40 | -webkit-animation: scaleToFade .7s ease both; 41 | -moz-animation: scaleToFade .7s ease both; 42 | animation: scaleToFade .7s ease both; 43 | } 44 | .owl-goDown-in { 45 | -webkit-animation: goDown .6s ease both; 46 | -moz-animation: goDown .6s ease both; 47 | animation: goDown .6s ease both; 48 | } 49 | /* scaleUp */ 50 | .owl-fadeUp-in { 51 | -webkit-animation: scaleUpFrom .5s ease both; 52 | -moz-animation: scaleUpFrom .5s ease both; 53 | animation: scaleUpFrom .5s ease both; 54 | } 55 | 56 | .owl-fadeUp-out { 57 | -webkit-animation: scaleUpTo .5s ease both; 58 | -moz-animation: scaleUpTo .5s ease both; 59 | animation: scaleUpTo .5s ease both; 60 | } 61 | /* Keyframes */ 62 | /*empty*/ 63 | @-webkit-keyframes empty { 64 | 0% {opacity: 1} 65 | } 66 | @-moz-keyframes empty { 67 | 0% {opacity: 1} 68 | } 69 | @keyframes empty { 70 | 0% {opacity: 1} 71 | } 72 | @-webkit-keyframes fadeIn { 73 | 0% { opacity:0; } 74 | 100% { opacity:1; } 75 | } 76 | @-moz-keyframes fadeIn { 77 | 0% { opacity:0; } 78 | 100% { opacity:1; } 79 | } 80 | @keyframes fadeIn { 81 | 0% { opacity:0; } 82 | 100% { opacity:1; } 83 | } 84 | @-webkit-keyframes fadeOut { 85 | 0% { opacity:1; } 86 | 100% { opacity:0; } 87 | } 88 | @-moz-keyframes fadeOut { 89 | 0% { opacity:1; } 90 | 100% { opacity:0; } 91 | } 92 | @keyframes fadeOut { 93 | 0% { opacity:1; } 94 | 100% { opacity:0; } 95 | } 96 | @-webkit-keyframes backSlideOut { 97 | 25% { opacity: .5; -webkit-transform: translateZ(-500px); } 98 | 75% { opacity: .5; -webkit-transform: translateZ(-500px) translateX(-200%); } 99 | 100% { opacity: .5; -webkit-transform: translateZ(-500px) translateX(-200%); } 100 | } 101 | @-moz-keyframes backSlideOut { 102 | 25% { opacity: .5; -moz-transform: translateZ(-500px); } 103 | 75% { opacity: .5; -moz-transform: translateZ(-500px) translateX(-200%); } 104 | 100% { opacity: .5; -moz-transform: translateZ(-500px) translateX(-200%); } 105 | } 106 | @keyframes backSlideOut { 107 | 25% { opacity: .5; transform: translateZ(-500px); } 108 | 75% { opacity: .5; transform: translateZ(-500px) translateX(-200%); } 109 | 100% { opacity: .5; transform: translateZ(-500px) translateX(-200%); } 110 | } 111 | @-webkit-keyframes backSlideIn { 112 | 0%, 25% { opacity: .5; -webkit-transform: translateZ(-500px) translateX(200%); } 113 | 75% { opacity: .5; -webkit-transform: translateZ(-500px); } 114 | 100% { opacity: 1; -webkit-transform: translateZ(0) translateX(0); } 115 | } 116 | @-moz-keyframes backSlideIn { 117 | 0%, 25% { opacity: .5; -moz-transform: translateZ(-500px) translateX(200%); } 118 | 75% { opacity: .5; -moz-transform: translateZ(-500px); } 119 | 100% { opacity: 1; -moz-transform: translateZ(0) translateX(0); } 120 | } 121 | @keyframes backSlideIn { 122 | 0%, 25% { opacity: .5; transform: translateZ(-500px) translateX(200%); } 123 | 75% { opacity: .5; transform: translateZ(-500px); } 124 | 100% { opacity: 1; transform: translateZ(0) translateX(0); } 125 | } 126 | @-webkit-keyframes scaleToFade { 127 | to { opacity: 0; -webkit-transform: scale(.8); } 128 | } 129 | @-moz-keyframes scaleToFade { 130 | to { opacity: 0; -moz-transform: scale(.8); } 131 | } 132 | @keyframes scaleToFade { 133 | to { opacity: 0; transform: scale(.8); } 134 | } 135 | @-webkit-keyframes goDown { 136 | from { -webkit-transform: translateY(-100%); } 137 | } 138 | @-moz-keyframes goDown { 139 | from { -moz-transform: translateY(-100%); } 140 | } 141 | @keyframes goDown { 142 | from { transform: translateY(-100%); } 143 | } 144 | 145 | @-webkit-keyframes scaleUpFrom { 146 | from { opacity: 0; -webkit-transform: scale(1.5); } 147 | } 148 | @-moz-keyframes scaleUpFrom { 149 | from { opacity: 0; -moz-transform: scale(1.5); } 150 | } 151 | @keyframes scaleUpFrom { 152 | from { opacity: 0; transform: scale(1.5); } 153 | } 154 | 155 | @-webkit-keyframes scaleUpTo { 156 | to { opacity: 0; -webkit-transform: scale(1.5); } 157 | } 158 | @-moz-keyframes scaleUpTo { 159 | to { opacity: 0; -moz-transform: scale(1.5); } 160 | } 161 | @keyframes scaleUpTo { 162 | to { opacity: 0; transform: scale(1.5); } 163 | } -------------------------------------------------------------------------------- /assets/css/bootstrap-select.min.css: -------------------------------------------------------------------------------- 1 | /*! 2 | * Bootstrap-select v1.6.2 (http://silviomoreto.github.io/bootstrap-select/) 3 | * 4 | * Copyright 2013-2014 bootstrap-select 5 | * Licensed under MIT (https://github.com/silviomoreto/bootstrap-select/blob/master/LICENSE) 6 | */.bootstrap-select{width:220px \0}.bootstrap-select>.btn{width:100%;padding-right:25px}.error .bootstrap-select .btn{border:1px solid #b94a48}.control-group.error .bootstrap-select .dropdown-toggle{border-color:#b94a48}.bootstrap-select.fit-width{width:auto!important}.bootstrap-select:not([class*=col-]):not([class*=form-control]):not(.input-group-btn){width:220px}.bootstrap-select .btn:focus{outline:thin dotted #333!important;outline:5px auto -webkit-focus-ring-color!important;outline-offset:-2px}.bootstrap-select.form-control{margin-bottom:0;padding:0;border:none}.bootstrap-select.form-control:not([class*=col-]){width:100%}.bootstrap-select.btn-group:not(.input-group-btn),.bootstrap-select.btn-group[class*=col-]{float:none;display:inline-block;margin-left:0}.bootstrap-select.btn-group.dropdown-menu-right,.bootstrap-select.btn-group[class*=col-].dropdown-menu-right,.row-fluid .bootstrap-select.btn-group[class*=col-].dropdown-menu-right{float:right}.form-search .bootstrap-select.btn-group,.form-inline .bootstrap-select.btn-group,.form-horizontal .bootstrap-select.btn-group,.form-group .bootstrap-select.btn-group{margin-bottom:0}.form-group-lg .bootstrap-select.btn-group.form-control,.form-group-sm .bootstrap-select.btn-group.form-control{padding:0}.form-inline .bootstrap-select.btn-group .form-control{width:100%}.input-append .bootstrap-select.btn-group{margin-left:-1px}.input-prepend .bootstrap-select.btn-group{margin-right:-1px}.bootstrap-select.btn-group>.disabled{cursor:not-allowed}.bootstrap-select.btn-group>.disabled:focus{outline:0!important}.bootstrap-select.btn-group .btn .filter-option{display:inline-block;overflow:hidden;width:100%;text-align:left}.bootstrap-select.btn-group .btn .caret{position:absolute;top:50%;right:12px;margin-top:-2px;vertical-align:middle}.bootstrap-select.btn-group[class*=col-] .btn{width:100%}.bootstrap-select.btn-group .dropdown-menu{min-width:100%;z-index:1035;-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box}.bootstrap-select.btn-group .dropdown-menu.inner{position:static;border:0;padding:0;margin:0;border-radius:0;-webkit-box-shadow:none;box-shadow:none}.bootstrap-select.btn-group .dropdown-menu li{position:relative}.bootstrap-select.btn-group .dropdown-menu li:not(.disabled) a:hover small,.bootstrap-select.btn-group .dropdown-menu li:not(.disabled) a:focus small,.bootstrap-select.btn-group .dropdown-menu li.active:not(.disabled) a small{color:#64b1d8;color:rgba(100,177,216,.4)}.bootstrap-select.btn-group .dropdown-menu li.disabled a{cursor:not-allowed}.bootstrap-select.btn-group .dropdown-menu li a{cursor:pointer}.bootstrap-select.btn-group .dropdown-menu li a.opt{position:relative;padding-left:2.25em}.bootstrap-select.btn-group .dropdown-menu li a span.check-mark{display:none}.bootstrap-select.btn-group .dropdown-menu li a span.text{display:inline-block}.bootstrap-select.btn-group .dropdown-menu li small{padding-left:.5em}.bootstrap-select.btn-group .dropdown-menu .notify{position:absolute;bottom:5px;width:96%;margin:0 2%;min-height:26px;padding:3px 5px;background:#f5f5f5;border:1px solid #e3e3e3;-webkit-box-shadow:inset 0 1px 1px rgba(0,0,0,.05);box-shadow:inset 0 1px 1px rgba(0,0,0,.05);pointer-events:none;opacity:.9;-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box}.bootstrap-select.btn-group .no-results{padding:3px;background:#f5f5f5;margin:0 5px}.bootstrap-select.btn-group.fit-width .btn .filter-option{position:static}.bootstrap-select.btn-group.fit-width .btn .caret{position:static;top:auto;margin-top:-1px}.bootstrap-select.btn-group.show-tick .dropdown-menu li.selected a span.check-mark{position:absolute;display:inline-block;right:15px;margin-top:2.5px}.bootstrap-select.btn-group.show-tick .dropdown-menu li a span.text{margin-right:34px}.bootstrap-select.show-menu-arrow.open>.btn{z-index:1035+1}.bootstrap-select.show-menu-arrow .dropdown-toggle:before{content:'';border-left:7px solid transparent;border-right:7px solid transparent;border-bottom-width:7px;border-bottom-style:solid;border-bottom-color:#ccc;border-bottom-color:rgba(204,204,204,.2);position:absolute;bottom:-4px;left:9px;display:none}.bootstrap-select.show-menu-arrow .dropdown-toggle:after{content:'';border-left:6px solid transparent;border-right:6px solid transparent;border-bottom:6px solid #fff;position:absolute;bottom:-4px;left:10px;display:none}.bootstrap-select.show-menu-arrow.dropup .dropdown-toggle:before{bottom:auto;top:-3px;border-bottom:0;border-top-width:7px;border-top-style:solid;border-top-color:#ccc;border-top-color:rgba(204,204,204,.2)}.bootstrap-select.show-menu-arrow.dropup .dropdown-toggle:after{bottom:auto;top:-3px;border-top:6px solid #fff;border-bottom:0}.bootstrap-select.show-menu-arrow.pull-right .dropdown-toggle:before{right:12px;left:auto}.bootstrap-select.show-menu-arrow.pull-right .dropdown-toggle:after{right:13px;left:auto}.bootstrap-select.show-menu-arrow.open>.dropdown-toggle:before,.bootstrap-select.show-menu-arrow.open>.dropdown-toggle:after{display:block}.bs-searchbox,.bs-actionsbox{padding:4px 8px}.bs-actionsbox{float:left;width:100%;-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box}.bs-actionsbox .btn-group button{width:50%}.bs-searchbox+.bs-actionsbox{padding:0 8px 4px}.bs-searchbox input.form-control{margin-bottom:0;width:100%}.mobile-device{position:absolute;top:0;left:0;display:block!important;width:100%;height:100%!important;opacity:0} -------------------------------------------------------------------------------- /my-wishlist.php: -------------------------------------------------------------------------------- 1 | 2 | 12 | 13 |
14 |
15 |
16 |
17 |
18 |
19 | 20 | 21 | 22 | 23 | 24 | 25 | 26 | 27 | 28 | 43 | 46 | 49 | 50 | 51 | 52 | 67 | 70 | 73 | 74 | 75 |
My Wishlist
imga 29 | 30 |
31 | 32 | 33 | 34 | 35 | 36 | ( 06 Reviews ) 37 |
38 |
39 | $400.00 40 | $900.00 41 |
42 |
44 | Add to cart 45 | 47 | 48 |
phoro 53 | 54 |
55 | 56 | 57 | 58 | 59 | 60 | ( 06 Reviews ) 61 |
62 |
63 | $450.00 64 | $900.00 65 |
66 |
68 | Add to cart 69 | 71 | 72 |
76 |
77 |
78 |
79 | 80 | 147 |
148 |
149 | -------------------------------------------------------------------------------- /assets/js/wow.min.js: -------------------------------------------------------------------------------- 1 | /*! WOW - v0.1.12 - 2014-06-29 2 | * Copyright (c) 2014 Matthieu Aussaguel; Licensed MIT */(function(){var a,b,c,d=function(a,b){return function(){return a.apply(b,arguments)}},e=[].indexOf||function(a){for(var b=0,c=this.length;c>b;b++)if(b in this&&this[b]===a)return b;return-1};b=function(){function a(){}return a.prototype.extend=function(a,b){var c,d;for(c in a)d=a[c],null!=d&&(b[c]=d);return b},a.prototype.isMobile=function(a){return/Android|webOS|iPhone|iPad|iPod|BlackBerry|IEMobile|Opera Mini/i.test(a)},a}(),c=this.WeakMap||this.MozWeakMap||(c=function(){function a(){this.keys=[],this.values=[]}return a.prototype.get=function(a){var b,c,d,e,f;for(f=this.keys,b=d=0,e=f.length;e>d;b=++d)if(c=f[b],c===a)return this.values[b]},a.prototype.set=function(a,b){var c,d,e,f,g;for(g=this.keys,c=e=0,f=g.length;f>e;c=++e)if(d=g[c],d===a)return void(this.values[c]=b);return this.keys.push(a),this.values.push(b)},a}()),a=this.MutationObserver||this.WebkitMutationObserver||this.MozMutationObserver||(a=function(){function a(){console.warn("MutationObserver is not supported by your browser."),console.warn("WOW.js cannot detect dom mutations, please call .sync() after loading new content.")}return a.notSupported=!0,a.prototype.observe=function(){},a}()),this.WOW=function(){function f(a){null==a&&(a={}),this.scrollCallback=d(this.scrollCallback,this),this.scrollHandler=d(this.scrollHandler,this),this.start=d(this.start,this),this.scrolled=!0,this.config=this.util().extend(a,this.defaults),this.animationNameCache=new c}return f.prototype.defaults={boxClass:"wow",animateClass:"animated",offset:0,mobile:!0,live:!0},f.prototype.init=function(){var a;return this.element=window.document.documentElement,"interactive"===(a=document.readyState)||"complete"===a?this.start():document.addEventListener("DOMContentLoaded",this.start),this.finished=[]},f.prototype.start=function(){var b,c,d,e;if(this.stopped=!1,this.boxes=this.element.getElementsByClassName(this.config.boxClass),this.all=function(){var a,c,d,e;for(d=this.boxes,e=[],a=0,c=d.length;c>a;a++)b=d[a],e.push(b);return e}.call(this),this.boxes.length)if(this.disabled())this.resetStyle();else{for(e=this.boxes,c=0,d=e.length;d>c;c++)b=e[c],this.applyStyle(b,!0);window.addEventListener("scroll",this.scrollHandler,!1),window.addEventListener("resize",this.scrollHandler,!1),this.interval=setInterval(this.scrollCallback,50)}return this.config.live?new a(function(a){return function(b){var c,d,e,f,g;for(g=[],e=0,f=b.length;f>e;e++)d=b[e],g.push(function(){var a,b,e,f;for(e=d.addedNodes||[],f=[],a=0,b=e.length;b>a;a++)c=e[a],f.push(this.doSync(c));return f}.call(a));return g}}(this)).observe(document.body,{childList:!0,subtree:!0}):void 0},f.prototype.stop=function(){return this.stopped=!0,window.removeEventListener("scroll",this.scrollHandler,!1),window.removeEventListener("resize",this.scrollHandler,!1),null!=this.interval?clearInterval(this.interval):void 0},f.prototype.sync=function(){return a.notSupported?this.doSync(this.element):void 0},f.prototype.doSync=function(a){var b,c,d,f,g;if(!this.stopped){for(a||(a=this.element),a=a.parentNode||a,f=a.getElementsByClassName(this.config.boxClass),g=[],c=0,d=f.length;d>c;c++)b=f[c],e.call(this.all,b)<0?(this.applyStyle(b,!0),this.boxes.push(b),this.all.push(b),g.push(this.scrolled=!0)):g.push(void 0);return g}},f.prototype.show=function(a){return this.applyStyle(a),a.className=""+a.className+" "+this.config.animateClass},f.prototype.applyStyle=function(a,b){var c,d,e;return d=a.getAttribute("data-wow-duration"),c=a.getAttribute("data-wow-delay"),e=a.getAttribute("data-wow-iteration"),this.animate(function(f){return function(){return f.customStyle(a,b,d,c,e)}}(this))},f.prototype.animate=function(){return"requestAnimationFrame"in window?function(a){return window.requestAnimationFrame(a)}:function(a){return a()}}(),f.prototype.resetStyle=function(){var a,b,c,d,e;for(d=this.boxes,e=[],b=0,c=d.length;c>b;b++)a=d[b],e.push(a.setAttribute("style","visibility: visible;"));return e},f.prototype.customStyle=function(a,b,c,d,e){return b&&this.cacheAnimationName(a),a.style.visibility=b?"hidden":"visible",c&&this.vendorSet(a.style,{animationDuration:c}),d&&this.vendorSet(a.style,{animationDelay:d}),e&&this.vendorSet(a.style,{animationIterationCount:e}),this.vendorSet(a.style,{animationName:b?"none":this.cachedAnimationName(a)}),a},f.prototype.vendors=["moz","webkit"],f.prototype.vendorSet=function(a,b){var c,d,e,f;f=[];for(c in b)d=b[c],a[""+c]=d,f.push(function(){var b,f,g,h;for(g=this.vendors,h=[],b=0,f=g.length;f>b;b++)e=g[b],h.push(a[""+e+c.charAt(0).toUpperCase()+c.substr(1)]=d);return h}.call(this));return f},f.prototype.vendorCSS=function(a,b){var c,d,e,f,g,h;for(d=window.getComputedStyle(a),c=d.getPropertyCSSValue(b),h=this.vendors,f=0,g=h.length;g>f;f++)e=h[f],c=c||d.getPropertyCSSValue("-"+e+"-"+b);return c},f.prototype.animationName=function(a){var b;try{b=this.vendorCSS(a,"animation-name").cssText}catch(c){b=window.getComputedStyle(a).getPropertyValue("animation-name")}return"none"===b?"":b},f.prototype.cacheAnimationName=function(a){return this.animationNameCache.set(a,this.animationName(a))},f.prototype.cachedAnimationName=function(a){return this.animationNameCache.get(a)},f.prototype.scrollHandler=function(){return this.scrolled=!0},f.prototype.scrollCallback=function(){var a;return!this.scrolled||(this.scrolled=!1,this.boxes=function(){var b,c,d,e;for(d=this.boxes,e=[],b=0,c=d.length;c>b;b++)a=d[b],a&&(this.isVisible(a)?this.show(a):e.push(a));return e}.call(this),this.boxes.length||this.config.live)?void 0:this.stop()},f.prototype.offsetTop=function(a){for(var b;void 0===a.offsetTop;)a=a.parentNode;for(b=a.offsetTop;a=a.offsetParent;)b+=a.offsetTop;return b},f.prototype.isVisible=function(a){var b,c,d,e,f;return c=a.getAttribute("data-wow-offset")||this.config.offset,f=window.pageYOffset,e=f+this.element.clientHeight-c,d=this.offsetTop(a),b=d+a.clientHeight,e>=d&&b>=f},f.prototype.util=function(){return this._util||(this._util=new b)},f.prototype.disabled=function(){return!this.config.mobile&&this.util().isMobile(navigator.userAgent)},f}()}).call(this); -------------------------------------------------------------------------------- /product-comparison.php: -------------------------------------------------------------------------------- 1 | 2 | 12 | 13 |
14 |
15 |
16 |
17 |

Product Comparison

18 |
19 | 20 | 21 | 22 | 41 | 42 | 61 | 62 | 81 | 82 | 101 | 102 | 103 | 104 | 105 | 111 | 112 | 118 | 119 | 125 | 126 | 132 | 133 | 134 | 135 | 136 | 137 | 138 | 139 | 140 | 141 | 142 | 143 | 144 | 145 | 146 | 147 | 148 | 149 | 150 | 151 | 152 | 153 | 154 | 155 | 156 | 157 |
Products 23 |
24 |
25 |
26 | 27 | 28 | 29 |
30 | 31 |
32 |

Floral Print Buttoned

33 |
34 | Add To Cart 35 |
36 | 37 |
38 |
39 |
40 |
43 |
44 |
45 |
46 | 47 | 48 | 49 |
50 | 51 |
52 |

Floral Print Buttoned

53 |
54 | Add To Cart 55 |
56 | 57 |
58 |
59 |
60 |
63 |
64 |
65 |
66 | 67 | 68 | 69 |
70 | 71 |
72 |

Floral Print Buttoned

73 |
74 | Add To Cart 75 |
76 | 77 |
78 |
79 |
80 |
83 |
84 |
85 |
86 | 87 | 88 | 89 |
90 | 91 |
92 |

Floral Print Buttoned

93 |
94 | Add To Cart 95 |
96 | 97 |
98 |
99 |
100 |
Price 106 |
107 | $300.00 108 | $500.00 109 |
110 |
113 |
114 | $350.00 115 | $500.00 116 |
117 |
120 |
121 | $400.00 122 | $500.00 123 |
124 |
127 |
128 | $3600.00 129 | $500.00 130 |
131 |
Description

Proin semper eros ac posuere ultrices. Nulla quis mi in risus volutpat blandit vestibulum in lorem. In euismod laoreet sapien vel gravida. Proin sem per eros ac posuere ultrices. Nulla quis mi in risus.

Proin semper eros ac posuere ultrices. Nulla quis mi in risus volutpat blandit vestibulum in lorem. In euismod laoreet sapien vel gravida. Proin sem per eros ac posuere ultrices.

Proin semper eros ac posuere ultrices. Nulla quis mi in risus volutpat blandit vestibulum in lorem. In euismod laoreet sapien vel gravida.

Proin semper eros ac posuere ultrices. Nulla quis mi in risus volutpat blandit vestibulum in lorem. In euismod laoreet sapien vel gravida. Proin sem per eros ac posuere ultrices. Nulla quis mi in risus.

Availability

In Stock

In Stock

In Stock

In Stock

Remove
158 |
159 |
160 |
161 |
162 |
163 | -------------------------------------------------------------------------------- /contact.php: -------------------------------------------------------------------------------- 1 | 2 | 12 | 13 |
14 |
15 |
16 |
17 | 18 |
19 | 20 |
21 |
22 |
23 |

Contact Form

24 |
25 |
26 |
27 |
28 | 29 | 30 |
31 |
32 |
33 |
34 |
35 |
36 | 37 | 38 |
39 |
40 |
41 |
42 |
43 |
44 | 45 | 46 |
47 |
48 |
49 |
50 |
51 |
52 | 53 | 54 |
55 |
56 |
57 |
58 | 59 |
60 |
61 |
62 |
63 |

Information

64 |
65 |
66 | 67 | ThemesGround, 789 Main rd, Anytown, CA 12345 USA 68 |
69 |
70 | 71 | +(888) 123-4567
+(888) 456-7890
72 |
73 | 77 |
78 |
79 | 80 | 147 | -------------------------------------------------------------------------------- /assets/js/jquery.rateit.min.js: -------------------------------------------------------------------------------- 1 | /*! RateIt | v1.0.21 / 03/16/2014 | https://rateit.codeplex.com/license 2 | http://rateit.codeplex.com | Twitter: @gjunge 3 | */ 4 | (function(n){function t(n){var u=n.originalEvent.changedTouches,t=u[0],i="",r;switch(n.type){case"touchmove":i="mousemove";break;case"touchend":i="mouseup";break;default:return}r=document.createEvent("MouseEvent");r.initMouseEvent(i,!0,!0,window,1,t.screenX,t.screenY,t.clientX,t.clientY,!1,!1,!1,!1,0,null);t.target.dispatchEvent(r);n.preventDefault()}n.rateit={aria:{resetLabel:"reset rating",ratingLabel:"rating"}};n.fn.rateit=function(i,r){var e=1,u={},o="init",s=function(n){return n.charAt(0).toUpperCase()+n.substr(1)},f;if(this.length===0)return this;if(f=n.type(i),f=="object"||i===undefined||i===null)u=n.extend({},n.fn.rateit.defaults,i);else{if(f=="string"&&i!=="reset"&&r===undefined)return this.data("rateit"+s(i));f=="string"&&(o="setvalue")}return this.each(function(){var c=n(this),f=function(n,t){if(t!=null){var i="aria-value"+(n=="value"?"now":n),r=c.find(".rateit-range");r.attr(i)!=undefined&&r.attr(i,t)}return arguments[0]="rateit"+s(n),c.data.apply(c,arguments)},p,w,v,h,b,g,nt,l,y,k,a;if(i=="reset"){p=f("init");for(w in p)c.data(w,p[w]);f("backingfld")&&(h=n(f("backingfld")),h.val(f("value")),h.trigger("change"),h[0].min&&(h[0].min=f("min")),h[0].max&&(h[0].max=f("max")),h[0].step&&(h[0].step=f("step")));c.trigger("reset")}if(c.hasClass("rateit")||c.addClass("rateit"),v=c.css("direction")!="rtl",o=="setvalue"){if(!f("init"))throw"Can't set value before init";i!="readonly"||r!=!0||f("readonly")||(c.find(".rateit-range").unbind(),f("wired",!1));i=="value"&&(r=r==null?f("min"):Math.max(f("min"),Math.min(f("max"),r)));f("backingfld")&&(h=n(f("backingfld")),i=="value"&&h.val(r),i=="min"&&h[0].min&&(h[0].min=r),i=="max"&&h[0].max&&(h[0].max=r),i=="step"&&h[0].step&&(h[0].step=r));f(i,r)}f("init")||(f("min",isNaN(f("min"))?u.min:f("min")),f("max",isNaN(f("max"))?u.max:f("max")),f("step",f("step")||u.step),f("readonly",f("readonly")!==undefined?f("readonly"):u.readonly),f("resetable",f("resetable")!==undefined?f("resetable"):u.resetable),f("backingfld",f("backingfld")||u.backingfld),f("starwidth",f("starwidth")||u.starwidth),f("starheight",f("starheight")||u.starheight),f("value",Math.max(f("min"),Math.min(f("max"),isNaN(f("value"))?isNaN(u.value)?u.min:u.value:f("value")))),f("ispreset",f("ispreset")!==undefined?f("ispreset"):u.ispreset),f("backingfld")&&(h=n(f("backingfld")).hide(),(h.attr("disabled")||h.attr("readonly"))&&f("readonly",!0),h[0].nodeName=="INPUT"&&(h[0].type=="range"||h[0].type=="text")&&(f("min",parseInt(h.attr("min"))||f("min")),f("max",parseInt(h.attr("max"))||f("max")),f("step",parseInt(h.attr("step"))||f("step"))),h[0].nodeName=="SELECT"&&h[0].options.length>1?(f("min",isNaN(f("min"))?Number(h[0].options[0].value):f("min")),f("max",Number(h[0].options[h[0].length-1].value)),f("step",Number(h[0].options[1].value)-Number(h[0].options[0].value)),b=h.find("option[selected]"),b.length==1&&f("value",b.val())):f("value",h.val())),g=c[0].nodeName=="DIV"?"div":"span",e++,nt=' 30 | 33 |
34 |
35 | 36 |
37 | 38 | 39 | 40 | 97 | 98 | 124 | 129 | 134 | 135 | -------------------------------------------------------------------------------- /terms-conditions.php: -------------------------------------------------------------------------------- 1 | 2 | 12 | 13 |
14 |
15 |
16 |
17 |
18 |

Terms and Conditions

19 |
20 |

Intellectual Propertly

21 |
    22 |
  1. Lorem ipsum dolor sit amet, consectetur adipiscing elit. Etiam quis diam erat. Duis velit lectus, posuere a blandit sit amet, tempor at lorem. Donec ultricies, lorem sed ultrices interdum.
  2. 23 |
  3. Lorem ipsum dolor sit amet, consectetur adipiscing elit. Etiam quis diam erat. Duis velit lectus, posuere a blandit sit amet, tempor at lorem. Donec ultricies, lorem sed ultrices interdum. Lorem ipsum dolor sit amet, consectetur adipiscing elit.
  4. 24 |
  5. Lorem ipsum dolor sit amet, consectetur adipiscing elit. Etiam quis diam erat. Duis velit lectus, posuere a blandit sit amet, tempor at lorem. Donec ultricies, lorem sed ultrices interdum. Lorem ipsum dolor sit amet, consectetur adipiscing elit.
  6. 25 |
  7. Lorem ipsum dolor sit amet, consectetur adipiscing elit. Etiam quis diam erat. Duis velit lectus, posuere a blandit sit amet, tempor at lorem. Donec ultricies, lorem sed ultrices interdum. Lorem ipsum dolor sit amet, consectetur adipiscing elit.
  8. 26 |
  9. Lorem ipsum dolor sit amet, consectetur adipiscing elit. Etiam quis diam erat. Duis velit lectus, posuere a blandit sit amet, tempor at lorem. Donec ultricies, lorem sed ultrices interdum. Lorem ipsum dolor sit amet, consectetur adipiscing elit.
  10. 27 |
  11. Lorem ipsum dolor sit amet, consectetur adipiscing elit. Etiam quis diam erat. Duis velit lectus, posuere a blandit sit amet, tempor at lorem. Donec ultricies, lorem sed ultrices interdum. Lorem ipsum dolor sit amet, consectetur adipiscing elit.
  12. 28 |
29 |

Termination

30 |
    31 |
  1. Lorem ipsum dolor sit amet, consectetur adipiscing elit. Etiam quis diam erat. Duis velit lectus, posuere a blandit sit amet, tempor at lorem. Donec ultricies, lorem sed ultrices interdum.
  2. 32 |
  3. Lorem ipsum dolor sit amet, consectetur adipiscing elit. Etiam quis diam erat. Duis velit lectus, posuere a blandit sit amet, tempor at lorem. Donec ultricies, lorem sed ultrices interdum. Lorem ipsum dolor sit amet, consectetur adipiscing elit.
  4. 33 |
  5. Lorem ipsum dolor sit amet, consectetur adipiscing elit. Etiam quis diam erat. Duis velit lectus, posuere a blandit sit amet, tempor at lorem. Donec ultricies, lorem sed ultrices interdum. Lorem ipsum dolor sit amet, consectetur adipiscing elit.
  6. 34 |
  7. Lorem ipsum dolor sit amet, consectetur adipiscing elit. Etiam quis diam erat. Duis velit lectus, posuere a blandit sit amet, tempor at lorem. Donec ultricies, lorem sed ultrices interdum. Lorem ipsum dolor sit amet, consectetur adipiscing elit.
  8. 35 |
36 |

Changes to this agreement

37 |

We reserve the right, at our sole discretion, to modify or replace these Terms and Conditions by posting the updated terms on the Site. Your continued use of the Site after any such changes constitutes your acceptance of the new Terms and Conditions.

38 |

Contact Us

39 |

If you have any questions about this Agreement, please contact us filling this contact form

40 |
41 |
42 |
43 | 44 | 111 |
112 |
113 | -------------------------------------------------------------------------------- /footer.php: -------------------------------------------------------------------------------- 1 | 2 | 123 | 124 | 125 | 126 | 127 | 128 | 129 | 130 | 131 | 132 | 133 | 134 | 135 | 136 | 137 | 138 | 139 | 140 | 141 | 142 | 143 | -------------------------------------------------------------------------------- /assets/js/jquery.easing-1.3.min.js: -------------------------------------------------------------------------------- 1 | /* 2 | * jQuery Easing v1.3 - http://gsgd.co.uk/sandbox/jquery/easing/ 3 | * 4 | * Uses the built in easing capabilities added In jQuery 1.1 5 | * to offer multiple easing options 6 | * 7 | * TERMS OF USE - jQuery Easing 8 | * 9 | * Open source under the BSD License. 10 | * 11 | * Copyright © 2008 George McGinley Smith 12 | * All rights reserved. 13 | * 14 | * Redistribution and use in source and binary forms, with or without modification, 15 | * are permitted provided that the following conditions are met: 16 | * 17 | * Redistributions of source code must retain the above copyright notice, this list of 18 | * conditions and the following disclaimer. 19 | * Redistributions in binary form must reproduce the above copyright notice, this list 20 | * of conditions and the following disclaimer in the documentation and/or other materials 21 | * provided with the distribution. 22 | * 23 | * Neither the name of the author nor the names of contributors may be used to endorse 24 | * or promote products derived from this software without specific prior written permission. 25 | * 26 | * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY 27 | * EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF 28 | * MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE 29 | * COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, 30 | * EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE 31 | * GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED 32 | * AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING 33 | * NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED 34 | * OF THE POSSIBILITY OF SUCH DAMAGE. 35 | * 36 | */ 37 | jQuery.easing.jswing=jQuery.easing.swing;jQuery.extend(jQuery.easing,{def:"easeOutQuad",swing:function(e,f,a,h,g){return jQuery.easing[jQuery.easing.def](e,f,a,h,g)},easeInQuad:function(e,f,a,h,g){return h*(f/=g)*f+a},easeOutQuad:function(e,f,a,h,g){return -h*(f/=g)*(f-2)+a},easeInOutQuad:function(e,f,a,h,g){if((f/=g/2)<1){return h/2*f*f+a}return -h/2*((--f)*(f-2)-1)+a},easeInCubic:function(e,f,a,h,g){return h*(f/=g)*f*f+a},easeOutCubic:function(e,f,a,h,g){return h*((f=f/g-1)*f*f+1)+a},easeInOutCubic:function(e,f,a,h,g){if((f/=g/2)<1){return h/2*f*f*f+a}return h/2*((f-=2)*f*f+2)+a},easeInQuart:function(e,f,a,h,g){return h*(f/=g)*f*f*f+a},easeOutQuart:function(e,f,a,h,g){return -h*((f=f/g-1)*f*f*f-1)+a},easeInOutQuart:function(e,f,a,h,g){if((f/=g/2)<1){return h/2*f*f*f*f+a}return -h/2*((f-=2)*f*f*f-2)+a},easeInQuint:function(e,f,a,h,g){return h*(f/=g)*f*f*f*f+a},easeOutQuint:function(e,f,a,h,g){return h*((f=f/g-1)*f*f*f*f+1)+a},easeInOutQuint:function(e,f,a,h,g){if((f/=g/2)<1){return h/2*f*f*f*f*f+a}return h/2*((f-=2)*f*f*f*f+2)+a},easeInSine:function(e,f,a,h,g){return -h*Math.cos(f/g*(Math.PI/2))+h+a},easeOutSine:function(e,f,a,h,g){return h*Math.sin(f/g*(Math.PI/2))+a},easeInOutSine:function(e,f,a,h,g){return -h/2*(Math.cos(Math.PI*f/g)-1)+a},easeInExpo:function(e,f,a,h,g){return(f==0)?a:h*Math.pow(2,10*(f/g-1))+a},easeOutExpo:function(e,f,a,h,g){return(f==g)?a+h:h*(-Math.pow(2,-10*f/g)+1)+a},easeInOutExpo:function(e,f,a,h,g){if(f==0){return a}if(f==g){return a+h}if((f/=g/2)<1){return h/2*Math.pow(2,10*(f-1))+a}return h/2*(-Math.pow(2,-10*--f)+2)+a},easeInCirc:function(e,f,a,h,g){return -h*(Math.sqrt(1-(f/=g)*f)-1)+a},easeOutCirc:function(e,f,a,h,g){return h*Math.sqrt(1-(f=f/g-1)*f)+a},easeInOutCirc:function(e,f,a,h,g){if((f/=g/2)<1){return -h/2*(Math.sqrt(1-f*f)-1)+a}return h/2*(Math.sqrt(1-(f-=2)*f)+1)+a},easeInElastic:function(f,h,e,l,k){var i=1.70158;var j=0;var g=l;if(h==0){return e}if((h/=k)==1){return e+l}if(!j){j=k*0.3}if(g
").appendTo(a("body")),this.$lightbox=a("#lightbox"),this.$overlay=a("#lightboxOverlay"),this.$outerContainer=this.$lightbox.find(".lb-outerContainer"),this.$container=this.$lightbox.find(".lb-container"),this.containerTopPadding=parseInt(this.$container.css("padding-top"),10),this.containerRightPadding=parseInt(this.$container.css("padding-right"),10),this.containerBottomPadding=parseInt(this.$container.css("padding-bottom"),10),this.containerLeftPadding=parseInt(this.$container.css("padding-left"),10),this.$overlay.hide().on("click",function(){return b.end(),!1}),this.$lightbox.hide().on("click",function(c){return"lightbox"===a(c.target).attr("id")&&b.end(),!1}),this.$outerContainer.on("click",function(c){return"lightbox"===a(c.target).attr("id")&&b.end(),!1}),this.$lightbox.find(".lb-prev").on("click",function(){return b.changeImage(0===b.currentImageIndex?b.album.length-1:b.currentImageIndex-1),!1}),this.$lightbox.find(".lb-next").on("click",function(){return b.changeImage(b.currentImageIndex===b.album.length-1?0:b.currentImageIndex+1),!1}),this.$lightbox.find(".lb-loader, .lb-close").on("click",function(){return b.end(),!1})},b.prototype.start=function(b){function c(a){d.album.push({link:a.attr("href"),title:a.attr("data-title")||a.attr("title")})}var d=this,e=a(window);e.on("resize",a.proxy(this.sizeOverlay,this)),a("select, object, embed").css({visibility:"hidden"}),this.sizeOverlay(),this.album=[];var f,g=0,h=b.attr("data-lightbox");if(h){f=a(b.prop("tagName")+'[data-lightbox="'+h+'"]');for(var i=0;ij||e.height>i)&&(e.width/j>e.height/i?(h=j,g=parseInt(e.height/(e.width/h),10),d.width(h),d.height(g)):(g=i,h=parseInt(e.width/(e.height/g),10),d.width(h),d.height(g)))),c.sizeContainer(d.width(),d.height())},e.src=this.album[b].link,this.currentImageIndex=b},b.prototype.sizeOverlay=function(){this.$overlay.width(a(window).width()).height(a(document).height())},b.prototype.sizeContainer=function(a,b){function c(){d.$lightbox.find(".lb-dataContainer").width(g),d.$lightbox.find(".lb-prevLink").height(h),d.$lightbox.find(".lb-nextLink").height(h),d.showImage()}var d=this,e=this.$outerContainer.outerWidth(),f=this.$outerContainer.outerHeight(),g=a+this.containerLeftPadding+this.containerRightPadding,h=b+this.containerTopPadding+this.containerBottomPadding;e!==g||f!==h?this.$outerContainer.animate({width:g,height:h},this.options.resizeDuration,"swing",function(){c()}):c()},b.prototype.showImage=function(){this.$lightbox.find(".lb-loader").hide(),this.$lightbox.find(".lb-image").fadeIn("slow"),this.updateNav(),this.updateDetails(),this.preloadNeighboringImages(),this.enableKeyboardNav()},b.prototype.updateNav=function(){var a=!1;try{document.createEvent("TouchEvent"),a=this.options.alwaysShowNavOnTouchDevices?!0:!1}catch(b){}this.$lightbox.find(".lb-nav").show(),this.album.length>1&&(this.options.wrapAround?(a&&this.$lightbox.find(".lb-prev, .lb-next").css("opacity","1"),this.$lightbox.find(".lb-prev, .lb-next").show()):(this.currentImageIndex>0&&(this.$lightbox.find(".lb-prev").show(),a&&this.$lightbox.find(".lb-prev").css("opacity","1")),this.currentImageIndex1&&this.options.showImageNumberLabel?this.$lightbox.find(".lb-number").text(this.options.albumLabel(this.currentImageIndex+1,this.album.length)).fadeIn("fast"):this.$lightbox.find(".lb-number").hide(),this.$outerContainer.removeClass("animating"),this.$lightbox.find(".lb-dataContainer").fadeIn(this.options.resizeDuration,function(){return b.sizeOverlay()})},b.prototype.preloadNeighboringImages=function(){if(this.album.length>this.currentImageIndex+1){var a=new Image;a.src=this.album[this.currentImageIndex+1].link}if(this.currentImageIndex>0){var b=new Image;b.src=this.album[this.currentImageIndex-1].link}},b.prototype.enableKeyboardNav=function(){a(document).on("keyup.keyboard",a.proxy(this.keyboardAction,this))},b.prototype.disableKeyboardNav=function(){a(document).off(".keyboard")},b.prototype.keyboardAction=function(a){var b=27,c=37,d=39,e=a.keyCode,f=String.fromCharCode(e).toLowerCase();e===b||f.match(/x|o|c/)?this.end():"p"===f||e===c?0!==this.currentImageIndex?this.changeImage(this.currentImageIndex-1):this.options.wrapAround&&this.album.length>1&&this.changeImage(this.album.length-1):("n"===f||e===d)&&(this.currentImageIndex!==this.album.length-1?this.changeImage(this.currentImageIndex+1):this.options.wrapAround&&this.album.length>1&&this.changeImage(0))},b.prototype.end=function(){this.disableKeyboardNav(),a(window).off("resize",this.sizeOverlay),this.$lightbox.fadeOut(this.options.fadeDuration),this.$overlay.fadeOut(this.options.fadeDuration),a("select, object, embed").css({visibility:"visible"})},b}();a(function(){{var a=new b;new c(a)}})}).call(this); 10 | //# sourceMappingURL=lightbox.min.map -------------------------------------------------------------------------------- /Admin/dist/js/myjs.js: -------------------------------------------------------------------------------- 1 | const sideNav = document.getElementById("sideNav"); 2 | const jsContent = document.getElementById("jsContent"); 3 | // bradcams 4 | const pageTitle = document.getElementById("pageTitle"); 5 | const previousPageLink = document.getElementById("previousPageLink"); 6 | const currentPage = document.getElementById("currentPage"); 7 | 8 | const allProduct = document.getElementById("allProduct"); 9 | const addProduct = document.getElementById("addProduct"); 10 | const allCat = document.getElementById("allCat"); 11 | const newCat = document.getElementById("newCat"); 12 | const mainMenu = document.querySelectorAll(".mainMenu"); 13 | const chieldMenu = document.querySelectorAll(".chieldMenu"); 14 | 15 | previousPageLink.addEventListener("click", () => { 16 | history.back(); 17 | }); 18 | 19 | const changeActiveClass = (menuType) => { 20 | menuType.forEach((item) => { 21 | item.addEventListener("click", (e) => { 22 | removeClass(menuType); 23 | e.target.classList.add("active"); 24 | }); 25 | }); 26 | }; 27 | 28 | const removeClass = (menuType) => { 29 | menuType.forEach((item) => { 30 | item.classList.remove("active"); 31 | }); 32 | }; 33 | 34 | changeActiveClass(mainMenu); 35 | changeActiveClass(chieldMenu); 36 | 37 | allProduct.addEventListener("click", () => { 38 | pageTitle.textContent = "All Products"; 39 | currentPage.textContent = "All Products"; 40 | jsContent.innerHTML = ``; 41 | getData(); 42 | }); 43 | 44 | addProduct.addEventListener("click", () => { 45 | pageTitle.textContent = "Add New Product"; 46 | currentPage.textContent = "Add New Product"; 47 | jsContent.innerHTML = ``; 48 | jsContent.appendChild(addProductForm()); 49 | }); 50 | 51 | allCat.addEventListener("click", () => { 52 | pageTitle.textContent = "All Category"; 53 | currentPage.textContent = "All Category"; 54 | jsContent.innerHTML = ``; 55 | getCatData(jsContent); 56 | }); 57 | 58 | newCat.addEventListener("click", () => { 59 | pageTitle.textContent = "Add New Category"; 60 | currentPage.textContent = "Add New Category"; 61 | jsContent.innerHTML = ``; 62 | jsContent.appendChild(addCatForm()); 63 | }); 64 | 65 | const getCatData = async (e) => { 66 | const fetchData = await fetch("./admindb.php?allcats=1"); 67 | const jsonData = await fetchData.json(); 68 | const table = document.createElement("table"); 69 | table.className = "table table-dark table-striped table-hover"; 70 | table.innerHTML = ` 71 | 72 | S.N. 73 | Category Icon 74 | Category Name 75 | Action 76 | 77 | `; 78 | let x = 1; 79 | jsonData.forEach((data) => { 80 | const tr = document.createElement("tr"); 81 | tr.innerHTML = ` 82 | ${x} 83 | 84 | ${data.name} 85 | 86 | Edit 87 | Delete 88 | 89 | `; 90 | ++x; 91 | table.appendChild(tr); 92 | }); 93 | e.appendChild(table); 94 | }; 95 | 96 | const addProductForm = () => { 97 | const formDiv = document.createElement("div"); 98 | formDiv.classList = "col-md-8"; 99 | formDiv.innerHTML = ` 100 |
101 |
102 | 103 |
104 |
105 | 106 |
107 |
108 | 109 |
110 |
111 | 112 |
113 |
114 | 115 |
116 |
117 | 118 |
119 |
120 | 121 | 122 |
123 |
124 | 125 |
126 |
127 | 128 |
129 |
130 | `; 131 | return formDiv; 132 | }; 133 | 134 | const addCatForm = () => { 135 | const formDiv = document.createElement("div"); 136 | formDiv.classList = "col-md-8"; 137 | formDiv.innerHTML = ` 138 |
139 |
140 |
141 | 142 | 143 |
144 |
145 | 146 | 147 |
148 |
149 | 150 |
151 |
152 | `; 153 | return formDiv; 154 | }; 155 | 156 | const changePageNumber = (j) => { 157 | let pn = j + 1; 158 | jsContent.innerHTML = ``; 159 | getData(pn); 160 | }; 161 | 162 | const addCatFunc = () => { 163 | const addCat = document.getElementById("addCat").value; 164 | const addCatIcon = document.getElementById("addCatIcon").value; 165 | const errCat = document.getElementById("errCat"); 166 | const errIcon = document.getElementById("errIcon"); 167 | if (!addCat) { 168 | errCat.textContent = "Please write a category name"; 169 | } 170 | if (!addCatIcon) { 171 | errIcon.textContent = "Please provide a icon class"; 172 | } 173 | if (addCat && addCatIcon) { 174 | const checkAddCat = jQAddcat(addCat, addCatIcon); 175 | if (checkAddCat === false) { 176 | const errMsg = `
Something went wrong
`; 177 | document.getElementById("addCatErrSucMsg").innerHTML = errMsg; 178 | } else { 179 | const successMsg = `
Category added successfully
`; 180 | document.getElementById("addCatErrSucMsg").innerHTML = successMsg; 181 | } 182 | } 183 | }; 184 | 185 | const getData = async (pageNo = 1) => { 186 | const fetchData = await fetch("./admindb.php?allProducts=1"); 187 | const jsonData = await fetchData.json(); 188 | 189 | const cardData = (e) => { 190 | const card = document.createElement("div"); 191 | card.className = "card col-md-4"; 192 | card.setAttribute("data-id", `${e.id}`); 193 | const cardHeader = document.createElement("div"); 194 | cardHeader.className = "card-header"; 195 | cardHeader.textContent = e.title; 196 | const cardBody = document.createElement("div"); 197 | cardBody.className = "card-body"; 198 | cardBody.textContent = e.short_descriptoin; 199 | const cardFooter = document.createElement("div"); 200 | cardFooter.className = "card-footer"; 201 | cardFooter.textContent = "brand: " + e.brand; 202 | card.appendChild(cardHeader); 203 | card.appendChild(cardBody); 204 | card.appendChild(cardFooter); 205 | jsContent.appendChild(card); 206 | }; 207 | const totalResult = jsonData.length; 208 | const resultPerPage = 3; 209 | const totalPage = Math.ceil(totalResult / resultPerPage); 210 | const locadData = (pn = pageNo) => { 211 | let pageNo = pn; 212 | let startPoint = (pageNo - 1) * resultPerPage; 213 | for (let i = startPoint; i < totalResult; i++) { 214 | if (i < startPoint + resultPerPage) { 215 | cardData(jsonData[i]); 216 | continue; 217 | } 218 | } 219 | }; 220 | locadData(); 221 | const row = document.createElement("div"); 222 | row.className = "row w-100"; 223 | for (let j = 0; j < totalPage; j++) { 224 | const button = document.createElement("button"); 225 | button.className = "btn btn-dark mx-1"; 226 | button.textContent = j + 1; 227 | button.setAttribute("onclick", `changePageNumber(${j})`); 228 | console.log(j); 229 | row.appendChild(button); 230 | } 231 | jsContent.appendChild(row); 232 | }; 233 | -------------------------------------------------------------------------------- /newProducts.php: -------------------------------------------------------------------------------- 1 | 6 | 7 | 8 |
9 |
10 |

New Products

11 | newProCategory(); 13 | ?> 14 | 21 | 22 |
23 |
24 | 25 |
26 |
27 | 88 |
89 |
90 | 91 | newProCategory(); 93 | foreach($proCatNew as $data): 94 | ?> 95 |
96 |
97 | 159 | 160 |
161 | 162 |
163 | 164 |
165 |
-------------------------------------------------------------------------------- /sign-in.php: -------------------------------------------------------------------------------- 1 | 2 | 12 | 13 |
14 |
15 | 148 | 149 | 216 |
217 |
218 | -------------------------------------------------------------------------------- /Admin/plugins/fontawesome-free/css/svg-with-js.css: -------------------------------------------------------------------------------- 1 | /*! 2 | * Font Awesome Free 5.15.4 by @fontawesome - https://fontawesome.com 3 | * License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) 4 | */ 5 | svg:not(:root).svg-inline--fa { 6 | overflow: visible; } 7 | 8 | .svg-inline--fa { 9 | display: inline-block; 10 | font-size: inherit; 11 | height: 1em; 12 | overflow: visible; 13 | vertical-align: -.125em; } 14 | .svg-inline--fa.fa-lg { 15 | vertical-align: -.225em; } 16 | .svg-inline--fa.fa-w-1 { 17 | width: 0.0625em; } 18 | .svg-inline--fa.fa-w-2 { 19 | width: 0.125em; } 20 | .svg-inline--fa.fa-w-3 { 21 | width: 0.1875em; } 22 | .svg-inline--fa.fa-w-4 { 23 | width: 0.25em; } 24 | .svg-inline--fa.fa-w-5 { 25 | width: 0.3125em; } 26 | .svg-inline--fa.fa-w-6 { 27 | width: 0.375em; } 28 | .svg-inline--fa.fa-w-7 { 29 | width: 0.4375em; } 30 | .svg-inline--fa.fa-w-8 { 31 | width: 0.5em; } 32 | .svg-inline--fa.fa-w-9 { 33 | width: 0.5625em; } 34 | .svg-inline--fa.fa-w-10 { 35 | width: 0.625em; } 36 | .svg-inline--fa.fa-w-11 { 37 | width: 0.6875em; } 38 | .svg-inline--fa.fa-w-12 { 39 | width: 0.75em; } 40 | .svg-inline--fa.fa-w-13 { 41 | width: 0.8125em; } 42 | .svg-inline--fa.fa-w-14 { 43 | width: 0.875em; } 44 | .svg-inline--fa.fa-w-15 { 45 | width: 0.9375em; } 46 | .svg-inline--fa.fa-w-16 { 47 | width: 1em; } 48 | .svg-inline--fa.fa-w-17 { 49 | width: 1.0625em; } 50 | .svg-inline--fa.fa-w-18 { 51 | width: 1.125em; } 52 | .svg-inline--fa.fa-w-19 { 53 | width: 1.1875em; } 54 | .svg-inline--fa.fa-w-20 { 55 | width: 1.25em; } 56 | .svg-inline--fa.fa-pull-left { 57 | margin-right: .3em; 58 | width: auto; } 59 | .svg-inline--fa.fa-pull-right { 60 | margin-left: .3em; 61 | width: auto; } 62 | .svg-inline--fa.fa-border { 63 | height: 1.5em; } 64 | .svg-inline--fa.fa-li { 65 | width: 2em; } 66 | .svg-inline--fa.fa-fw { 67 | width: 1.25em; } 68 | 69 | .fa-layers svg.svg-inline--fa { 70 | bottom: 0; 71 | left: 0; 72 | margin: auto; 73 | position: absolute; 74 | right: 0; 75 | top: 0; } 76 | 77 | .fa-layers { 78 | display: inline-block; 79 | height: 1em; 80 | position: relative; 81 | text-align: center; 82 | vertical-align: -.125em; 83 | width: 1em; } 84 | .fa-layers svg.svg-inline--fa { 85 | -webkit-transform-origin: center center; 86 | transform-origin: center center; } 87 | 88 | .fa-layers-text, .fa-layers-counter { 89 | display: inline-block; 90 | position: absolute; 91 | text-align: center; } 92 | 93 | .fa-layers-text { 94 | left: 50%; 95 | top: 50%; 96 | -webkit-transform: translate(-50%, -50%); 97 | transform: translate(-50%, -50%); 98 | -webkit-transform-origin: center center; 99 | transform-origin: center center; } 100 | 101 | .fa-layers-counter { 102 | background-color: #ff253a; 103 | border-radius: 1em; 104 | -webkit-box-sizing: border-box; 105 | box-sizing: border-box; 106 | color: #fff; 107 | height: 1.5em; 108 | line-height: 1; 109 | max-width: 5em; 110 | min-width: 1.5em; 111 | overflow: hidden; 112 | padding: .25em; 113 | right: 0; 114 | text-overflow: ellipsis; 115 | top: 0; 116 | -webkit-transform: scale(0.25); 117 | transform: scale(0.25); 118 | -webkit-transform-origin: top right; 119 | transform-origin: top right; } 120 | 121 | .fa-layers-bottom-right { 122 | bottom: 0; 123 | right: 0; 124 | top: auto; 125 | -webkit-transform: scale(0.25); 126 | transform: scale(0.25); 127 | -webkit-transform-origin: bottom right; 128 | transform-origin: bottom right; } 129 | 130 | .fa-layers-bottom-left { 131 | bottom: 0; 132 | left: 0; 133 | right: auto; 134 | top: auto; 135 | -webkit-transform: scale(0.25); 136 | transform: scale(0.25); 137 | -webkit-transform-origin: bottom left; 138 | transform-origin: bottom left; } 139 | 140 | .fa-layers-top-right { 141 | right: 0; 142 | top: 0; 143 | -webkit-transform: scale(0.25); 144 | transform: scale(0.25); 145 | -webkit-transform-origin: top right; 146 | transform-origin: top right; } 147 | 148 | .fa-layers-top-left { 149 | left: 0; 150 | right: auto; 151 | top: 0; 152 | -webkit-transform: scale(0.25); 153 | transform: scale(0.25); 154 | -webkit-transform-origin: top left; 155 | transform-origin: top left; } 156 | 157 | .fa-lg { 158 | font-size: 1.33333em; 159 | line-height: 0.75em; 160 | vertical-align: -.0667em; } 161 | 162 | .fa-xs { 163 | font-size: .75em; } 164 | 165 | .fa-sm { 166 | font-size: .875em; } 167 | 168 | .fa-1x { 169 | font-size: 1em; } 170 | 171 | .fa-2x { 172 | font-size: 2em; } 173 | 174 | .fa-3x { 175 | font-size: 3em; } 176 | 177 | .fa-4x { 178 | font-size: 4em; } 179 | 180 | .fa-5x { 181 | font-size: 5em; } 182 | 183 | .fa-6x { 184 | font-size: 6em; } 185 | 186 | .fa-7x { 187 | font-size: 7em; } 188 | 189 | .fa-8x { 190 | font-size: 8em; } 191 | 192 | .fa-9x { 193 | font-size: 9em; } 194 | 195 | .fa-10x { 196 | font-size: 10em; } 197 | 198 | .fa-fw { 199 | text-align: center; 200 | width: 1.25em; } 201 | 202 | .fa-ul { 203 | list-style-type: none; 204 | margin-left: 2.5em; 205 | padding-left: 0; } 206 | .fa-ul > li { 207 | position: relative; } 208 | 209 | .fa-li { 210 | left: -2em; 211 | position: absolute; 212 | text-align: center; 213 | width: 2em; 214 | line-height: inherit; } 215 | 216 | .fa-border { 217 | border: solid 0.08em #eee; 218 | border-radius: .1em; 219 | padding: .2em .25em .15em; } 220 | 221 | .fa-pull-left { 222 | float: left; } 223 | 224 | .fa-pull-right { 225 | float: right; } 226 | 227 | .fa.fa-pull-left, 228 | .fas.fa-pull-left, 229 | .far.fa-pull-left, 230 | .fal.fa-pull-left, 231 | .fab.fa-pull-left { 232 | margin-right: .3em; } 233 | 234 | .fa.fa-pull-right, 235 | .fas.fa-pull-right, 236 | .far.fa-pull-right, 237 | .fal.fa-pull-right, 238 | .fab.fa-pull-right { 239 | margin-left: .3em; } 240 | 241 | .fa-spin { 242 | -webkit-animation: fa-spin 2s infinite linear; 243 | animation: fa-spin 2s infinite linear; } 244 | 245 | .fa-pulse { 246 | -webkit-animation: fa-spin 1s infinite steps(8); 247 | animation: fa-spin 1s infinite steps(8); } 248 | 249 | @-webkit-keyframes fa-spin { 250 | 0% { 251 | -webkit-transform: rotate(0deg); 252 | transform: rotate(0deg); } 253 | 100% { 254 | -webkit-transform: rotate(360deg); 255 | transform: rotate(360deg); } } 256 | 257 | @keyframes fa-spin { 258 | 0% { 259 | -webkit-transform: rotate(0deg); 260 | transform: rotate(0deg); } 261 | 100% { 262 | -webkit-transform: rotate(360deg); 263 | transform: rotate(360deg); } } 264 | 265 | .fa-rotate-90 { 266 | -ms-filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=1)"; 267 | -webkit-transform: rotate(90deg); 268 | transform: rotate(90deg); } 269 | 270 | .fa-rotate-180 { 271 | -ms-filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=2)"; 272 | -webkit-transform: rotate(180deg); 273 | transform: rotate(180deg); } 274 | 275 | .fa-rotate-270 { 276 | -ms-filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=3)"; 277 | -webkit-transform: rotate(270deg); 278 | transform: rotate(270deg); } 279 | 280 | .fa-flip-horizontal { 281 | -ms-filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=0, mirror=1)"; 282 | -webkit-transform: scale(-1, 1); 283 | transform: scale(-1, 1); } 284 | 285 | .fa-flip-vertical { 286 | -ms-filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=2, mirror=1)"; 287 | -webkit-transform: scale(1, -1); 288 | transform: scale(1, -1); } 289 | 290 | .fa-flip-both, .fa-flip-horizontal.fa-flip-vertical { 291 | -ms-filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=2, mirror=1)"; 292 | -webkit-transform: scale(-1, -1); 293 | transform: scale(-1, -1); } 294 | 295 | :root .fa-rotate-90, 296 | :root .fa-rotate-180, 297 | :root .fa-rotate-270, 298 | :root .fa-flip-horizontal, 299 | :root .fa-flip-vertical, 300 | :root .fa-flip-both { 301 | -webkit-filter: none; 302 | filter: none; } 303 | 304 | .fa-stack { 305 | display: inline-block; 306 | height: 2em; 307 | position: relative; 308 | width: 2.5em; } 309 | 310 | .fa-stack-1x, 311 | .fa-stack-2x { 312 | bottom: 0; 313 | left: 0; 314 | margin: auto; 315 | position: absolute; 316 | right: 0; 317 | top: 0; } 318 | 319 | .svg-inline--fa.fa-stack-1x { 320 | height: 1em; 321 | width: 1.25em; } 322 | 323 | .svg-inline--fa.fa-stack-2x { 324 | height: 2em; 325 | width: 2.5em; } 326 | 327 | .fa-inverse { 328 | color: #fff; } 329 | 330 | .sr-only { 331 | border: 0; 332 | clip: rect(0, 0, 0, 0); 333 | height: 1px; 334 | margin: -1px; 335 | overflow: hidden; 336 | padding: 0; 337 | position: absolute; 338 | width: 1px; } 339 | 340 | .sr-only-focusable:active, .sr-only-focusable:focus { 341 | clip: auto; 342 | height: auto; 343 | margin: 0; 344 | overflow: visible; 345 | position: static; 346 | width: auto; } 347 | 348 | .svg-inline--fa .fa-primary { 349 | fill: var(--fa-primary-color, currentColor); 350 | opacity: 1; 351 | opacity: var(--fa-primary-opacity, 1); } 352 | 353 | .svg-inline--fa .fa-secondary { 354 | fill: var(--fa-secondary-color, currentColor); 355 | opacity: 0.4; 356 | opacity: var(--fa-secondary-opacity, 0.4); } 357 | 358 | .svg-inline--fa.fa-swap-opacity .fa-primary { 359 | opacity: 0.4; 360 | opacity: var(--fa-secondary-opacity, 0.4); } 361 | 362 | .svg-inline--fa.fa-swap-opacity .fa-secondary { 363 | opacity: 1; 364 | opacity: var(--fa-primary-opacity, 1); } 365 | 366 | .svg-inline--fa mask .fa-primary, 367 | .svg-inline--fa mask .fa-secondary { 368 | fill: black; } 369 | 370 | .fad.fa-inverse { 371 | color: #fff; } 372 | -------------------------------------------------------------------------------- /shopping-cart.php: -------------------------------------------------------------------------------- 1 | 2 | 12 | 13 |
14 |
15 |
16 |
17 |
18 |
19 | 20 | 21 | 22 | 23 | 24 | 25 | 26 | 27 | 28 | 29 | 30 | 31 | 32 | 33 | 41 | 42 | 43 | 44 | 45 | 46 | 51 | 67 | 68 | 77 | 78 | 79 | 80 | 81 | 82 | 87 | 103 | 104 | 115 | 116 | 117 | 118 | 119 |
RemoveImageProduct NameEditQuantitySubtotalGrandtotal
34 |
35 | 36 | Continue Shopping 37 | Update shopping cart 38 | 39 |
40 |
47 | 48 | 49 | 50 | 52 |

Floral Print Buttoned

53 |
54 |
55 |
56 |
57 |
58 |
59 | (06 Reviews) 60 |
61 |
62 |
63 |
64 | COLOR:Blue 65 |
66 |
Edit 69 |
70 |
71 |
72 |
73 |
74 | 75 |
76 |
$300.00$300.00
83 | 84 | 85 | 86 | 88 |

Floral Print Buttoned

89 |
90 |
91 |
92 |
93 |
94 |
95 | (06 Reviews) 96 |
97 |
98 |
99 |
100 | COLOR:Pink 101 |
102 |
Edit 105 |
106 |
107 |
108 |
109 |
110 |
111 | 112 |
113 |
114 |
$300.00$300.00
120 |
121 |
122 | 123 | 124 | 125 | 129 | 130 | 131 | 132 | 133 | 164 | 165 | 166 |
126 | Estimate shipping and tax 127 |

Enter your destination to get shipping and tax.

128 |
134 |
135 | 136 | 144 |
145 |
146 | 147 | 155 |
156 |
157 | 158 | 159 |
160 |
161 | 162 |
163 |
167 |
168 | 169 |
170 | 171 | 172 | 173 | 177 | 178 | 179 | 180 | 181 | 189 | 190 | 191 |
174 | Discount Code 175 |

Enter your coupon code if you have one..

176 |
182 |
183 | 184 |
185 |
186 | 187 |
188 |
192 |
193 | 194 |
195 | 196 | 197 | 198 | 206 | 207 | 208 | 209 | 210 | 216 | 217 | 218 |
199 |
200 | Subtotal$600.00 201 |
202 |
203 | Grand Total$600.00 204 |
205 |
211 |
212 | 213 | Checkout with multiples address! 214 |
215 |
219 |
220 |
221 | 222 | 289 |
290 |
291 | 292 | --------------------------------------------------------------------------------