├── .gitattributes ├── .github └── FUNDING.yml ├── .vscode └── settings.json ├── Admin ├── CHANGELOG.md ├── LICENSE ├── README.md ├── connection │ ├── connectData.php │ ├── connectDiscount.php │ ├── connectOrder.php │ ├── connectProduct.php │ ├── connectReview.php │ ├── connectUser.php │ ├── connectionpro.php │ └── db.php ├── package-lock.json ├── package.json ├── postcss.config.js ├── public │ ├── ManageOrder.php │ ├── addDiscount.php │ ├── addProduct.html │ ├── addProduct.php │ ├── addWishlist.php │ ├── assets │ │ ├── css │ │ │ ├── tailwind.css │ │ │ └── tailwind.output.css │ │ ├── img │ │ │ ├── create-account-office-dark.jpeg │ │ │ ├── create-account-office.jpeg │ │ │ ├── dashboard.png │ │ │ ├── forgot-password-office-dark.jpeg │ │ │ ├── forgot-password-office.jpeg │ │ │ ├── github.svg │ │ │ ├── login-office-dark.jpeg │ │ │ ├── login-office.jpeg │ │ │ └── twitter.svg │ │ └── js │ │ │ ├── charts-bars.js │ │ │ ├── charts-lines.js │ │ │ ├── charts-pie.js │ │ │ ├── focus-trap.js │ │ │ └── init-alpine.js │ ├── buttons.html │ ├── comment.html │ ├── comment.php │ ├── deleteDiscount.php │ ├── deleteOrders.php │ ├── deleteProduct.php │ ├── deleteReview.php │ ├── deleteUser.php │ ├── deleteWishlist.php │ ├── delete_comment.php │ ├── editOrder.php │ ├── editProduct.php │ ├── editReview1.php │ ├── edit_comment.php │ ├── index.html │ ├── index.php │ ├── manageDiscount.php │ ├── manageProduct.html │ ├── manageProduct.php │ ├── manageReview.php │ ├── manageUser.php │ ├── modals.html │ ├── pages │ │ ├── 404.html │ │ ├── blank.html │ │ ├── create-account.html │ │ ├── forgot-password.html │ │ └── login.html │ ├── test.html │ ├── updateOrder.php │ └── updateProduct.php └── tailwind.config.js ├── Fontend ├── 0_12months.php ├── 1_2years.php ├── 3+years.php ├── 404.php ├── 404b.php ├── 5+years.php ├── FAQ.php ├── LEGO.php ├── Search.php ├── about.html ├── about.php ├── accept_review.php ├── add-to-cart.php ├── add-to-order.php ├── babylogo.php ├── barbie.php ├── blog-detail1.php ├── blog-detail10.html ├── blog-detail11.html ├── blog-detail2.html ├── blog-detail3.html ├── blog-detail4.html ├── blog-detail5.html ├── blog-detail6.html ├── blog-detail7.html ├── blog-detail8.html ├── blog-detail9.html ├── blog.php ├── blog2.html ├── buy-it-now.php ├── buy-product-coupon.php ├── buy-product.php ├── check-coupon.php ├── cloudfrog.php ├── connect.php ├── contact.html ├── contact.php ├── cookie.php ├── css │ ├── box.css │ ├── cart.css │ ├── faq.css │ ├── main.css │ ├── product_res.css │ ├── them.css │ └── util.css ├── delete-cart.php ├── delete-cart2.php ├── dino.php ├── disproduct.css ├── dompdf │ ├── AUTHORS.md │ ├── LICENSE.LGPL │ ├── README.md │ ├── VERSION │ ├── autoload.inc.php │ └── vendor │ │ ├── autoload.php │ │ ├── composer │ │ ├── ClassLoader.php │ │ ├── InstalledVersions.php │ │ ├── LICENSE │ │ ├── autoload_classmap.php │ │ ├── autoload_namespaces.php │ │ ├── autoload_psr4.php │ │ ├── autoload_real.php │ │ ├── autoload_static.php │ │ ├── installed.json │ │ ├── installed.php │ │ └── platform_check.php │ │ ├── dompdf │ │ └── dompdf │ │ │ ├── AUTHORS.md │ │ │ ├── LICENSE.LGPL │ │ │ ├── README.md │ │ │ ├── VERSION │ │ │ ├── composer.json │ │ │ ├── lib │ │ │ ├── Cpdf.php │ │ │ ├── fonts │ │ │ │ ├── Courier-Bold.afm │ │ │ │ ├── Courier-BoldOblique.afm │ │ │ │ ├── Courier-Oblique.afm │ │ │ │ ├── Courier.afm │ │ │ │ ├── DejaVuSans-Bold.ttf │ │ │ │ ├── DejaVuSans-Bold.ufm │ │ │ │ ├── DejaVuSans-BoldOblique.ttf │ │ │ │ ├── DejaVuSans-BoldOblique.ufm │ │ │ │ ├── DejaVuSans-Oblique.ttf │ │ │ │ ├── DejaVuSans-Oblique.ufm │ │ │ │ ├── DejaVuSans.ttf │ │ │ │ ├── DejaVuSans.ufm │ │ │ │ ├── DejaVuSans.ufm.json │ │ │ │ ├── DejaVuSansMono-Bold.ttf │ │ │ │ ├── DejaVuSansMono-Bold.ufm │ │ │ │ ├── DejaVuSansMono-BoldOblique.ttf │ │ │ │ ├── DejaVuSansMono-BoldOblique.ufm │ │ │ │ ├── DejaVuSansMono-Oblique.ttf │ │ │ │ ├── DejaVuSansMono-Oblique.ufm │ │ │ │ ├── DejaVuSansMono.ttf │ │ │ │ ├── DejaVuSansMono.ufm │ │ │ │ ├── DejaVuSerif-Bold.ttf │ │ │ │ ├── DejaVuSerif-Bold.ufm │ │ │ │ ├── DejaVuSerif-BoldItalic.ttf │ │ │ │ ├── DejaVuSerif-BoldItalic.ufm │ │ │ │ ├── DejaVuSerif-Italic.ttf │ │ │ │ ├── DejaVuSerif-Italic.ufm │ │ │ │ ├── DejaVuSerif.ttf │ │ │ │ ├── DejaVuSerif.ufm │ │ │ │ ├── Helvetica-Bold.afm │ │ │ │ ├── Helvetica-BoldOblique.afm │ │ │ │ ├── Helvetica-Oblique.afm │ │ │ │ ├── Helvetica.afm │ │ │ │ ├── Helvetica.afm.json │ │ │ │ ├── Symbol.afm │ │ │ │ ├── Times-Bold.afm │ │ │ │ ├── Times-Bold.afm.json │ │ │ │ ├── Times-BoldItalic.afm │ │ │ │ ├── Times-Italic.afm │ │ │ │ ├── Times-Italic.afm.json │ │ │ │ ├── Times-Roman.afm │ │ │ │ ├── Times-Roman.afm.json │ │ │ │ ├── ZapfDingbats.afm │ │ │ │ ├── installed-fonts.dist.json │ │ │ │ └── mustRead.html │ │ │ └── res │ │ │ │ ├── broken_image.png │ │ │ │ ├── broken_image.svg │ │ │ │ └── html.css │ │ │ └── src │ │ │ ├── Adapter │ │ │ ├── CPDF.php │ │ │ ├── GD.php │ │ │ └── PDFLib.php │ │ │ ├── Canvas.php │ │ │ ├── CanvasFactory.php │ │ │ ├── Cellmap.php │ │ │ ├── Css │ │ │ ├── AttributeTranslator.php │ │ │ ├── Color.php │ │ │ ├── Style.php │ │ │ └── Stylesheet.php │ │ │ ├── Dompdf.php │ │ │ ├── Exception.php │ │ │ ├── Exception │ │ │ └── ImageException.php │ │ │ ├── FontMetrics.php │ │ │ ├── Frame.php │ │ │ ├── Frame │ │ │ ├── Factory.php │ │ │ ├── FrameListIterator.php │ │ │ ├── FrameTree.php │ │ │ └── FrameTreeIterator.php │ │ │ ├── FrameDecorator │ │ │ ├── AbstractFrameDecorator.php │ │ │ ├── Block.php │ │ │ ├── Image.php │ │ │ ├── Inline.php │ │ │ ├── ListBullet.php │ │ │ ├── ListBulletImage.php │ │ │ ├── NullFrameDecorator.php │ │ │ ├── Page.php │ │ │ ├── Table.php │ │ │ ├── TableCell.php │ │ │ ├── TableRow.php │ │ │ ├── TableRowGroup.php │ │ │ └── Text.php │ │ │ ├── FrameReflower │ │ │ ├── AbstractFrameReflower.php │ │ │ ├── Block.php │ │ │ ├── Image.php │ │ │ ├── Inline.php │ │ │ ├── ListBullet.php │ │ │ ├── NullFrameReflower.php │ │ │ ├── Page.php │ │ │ ├── Table.php │ │ │ ├── TableCell.php │ │ │ ├── TableRow.php │ │ │ ├── TableRowGroup.php │ │ │ └── Text.php │ │ │ ├── Helpers.php │ │ │ ├── Image │ │ │ └── Cache.php │ │ │ ├── JavascriptEmbedder.php │ │ │ ├── LineBox.php │ │ │ ├── Options.php │ │ │ ├── PhpEvaluator.php │ │ │ ├── Positioner │ │ │ ├── Absolute.php │ │ │ ├── AbstractPositioner.php │ │ │ ├── Block.php │ │ │ ├── Fixed.php │ │ │ ├── Inline.php │ │ │ ├── ListBullet.php │ │ │ ├── NullPositioner.php │ │ │ ├── TableCell.php │ │ │ └── TableRow.php │ │ │ ├── Renderer.php │ │ │ └── Renderer │ │ │ ├── AbstractRenderer.php │ │ │ ├── Block.php │ │ │ ├── Image.php │ │ │ ├── Inline.php │ │ │ ├── ListBullet.php │ │ │ ├── TableCell.php │ │ │ ├── TableRowGroup.php │ │ │ └── Text.php │ │ ├── masterminds │ │ └── html5 │ │ │ ├── CREDITS │ │ │ ├── LICENSE.txt │ │ │ ├── README.md │ │ │ ├── RELEASE.md │ │ │ ├── UPGRADING.md │ │ │ ├── bin │ │ │ └── entities.php │ │ │ ├── composer.json │ │ │ └── src │ │ │ ├── HTML5.php │ │ │ └── HTML5 │ │ │ ├── Elements.php │ │ │ ├── Entities.php │ │ │ ├── Exception.php │ │ │ ├── InstructionProcessor.php │ │ │ ├── Parser │ │ │ ├── CharacterReference.php │ │ │ ├── DOMTreeBuilder.php │ │ │ ├── EventHandler.php │ │ │ ├── FileInputStream.php │ │ │ ├── InputStream.php │ │ │ ├── ParseError.php │ │ │ ├── README.md │ │ │ ├── Scanner.php │ │ │ ├── StringInputStream.php │ │ │ ├── Tokenizer.php │ │ │ ├── TreeBuildingRules.php │ │ │ └── UTF8Utils.php │ │ │ └── Serializer │ │ │ ├── HTML5Entities.php │ │ │ ├── OutputRules.php │ │ │ ├── README.md │ │ │ ├── RulesInterface.php │ │ │ └── Traverser.php │ │ ├── phenx │ │ ├── php-font-lib │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── composer.json │ │ │ ├── maps │ │ │ │ ├── adobe-standard-encoding.map │ │ │ │ ├── cp1250.map │ │ │ │ ├── cp1251.map │ │ │ │ ├── cp1252.map │ │ │ │ ├── cp1253.map │ │ │ │ ├── cp1254.map │ │ │ │ ├── cp1255.map │ │ │ │ ├── cp1257.map │ │ │ │ ├── cp1258.map │ │ │ │ ├── cp874.map │ │ │ │ ├── iso-8859-1.map │ │ │ │ ├── iso-8859-11.map │ │ │ │ ├── iso-8859-15.map │ │ │ │ ├── iso-8859-16.map │ │ │ │ ├── iso-8859-2.map │ │ │ │ ├── iso-8859-4.map │ │ │ │ ├── iso-8859-5.map │ │ │ │ ├── iso-8859-7.map │ │ │ │ ├── iso-8859-9.map │ │ │ │ ├── koi8-r.map │ │ │ │ └── koi8-u.map │ │ │ └── src │ │ │ │ └── FontLib │ │ │ │ ├── AdobeFontMetrics.php │ │ │ │ ├── BinaryStream.php │ │ │ │ ├── EOT │ │ │ │ ├── File.php │ │ │ │ └── Header.php │ │ │ │ ├── EncodingMap.php │ │ │ │ ├── Exception │ │ │ │ └── FontNotFoundException.php │ │ │ │ ├── Font.php │ │ │ │ ├── Glyph │ │ │ │ ├── Outline.php │ │ │ │ ├── OutlineComponent.php │ │ │ │ ├── OutlineComposite.php │ │ │ │ └── OutlineSimple.php │ │ │ │ ├── Header.php │ │ │ │ ├── OpenType │ │ │ │ ├── File.php │ │ │ │ └── TableDirectoryEntry.php │ │ │ │ ├── Table │ │ │ │ ├── DirectoryEntry.php │ │ │ │ ├── Table.php │ │ │ │ └── Type │ │ │ │ │ ├── cmap.php │ │ │ │ │ ├── cvt.php │ │ │ │ │ ├── fpgm.php │ │ │ │ │ ├── glyf.php │ │ │ │ │ ├── head.php │ │ │ │ │ ├── hhea.php │ │ │ │ │ ├── hmtx.php │ │ │ │ │ ├── kern.php │ │ │ │ │ ├── loca.php │ │ │ │ │ ├── maxp.php │ │ │ │ │ ├── name.php │ │ │ │ │ ├── nameRecord.php │ │ │ │ │ ├── os2.php │ │ │ │ │ ├── post.php │ │ │ │ │ └── prep.php │ │ │ │ ├── TrueType │ │ │ │ ├── Collection.php │ │ │ │ ├── File.php │ │ │ │ ├── Header.php │ │ │ │ └── TableDirectoryEntry.php │ │ │ │ └── WOFF │ │ │ │ ├── File.php │ │ │ │ ├── Header.php │ │ │ │ └── TableDirectoryEntry.php │ │ └── php-svg-lib │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── composer.json │ │ │ └── src │ │ │ └── Svg │ │ │ ├── CssLength.php │ │ │ ├── DefaultStyle.php │ │ │ ├── Document.php │ │ │ ├── Gradient │ │ │ └── Stop.php │ │ │ ├── Style.php │ │ │ ├── Surface │ │ │ ├── CPdf.php │ │ │ ├── SurfaceCpdf.php │ │ │ ├── SurfaceInterface.php │ │ │ └── SurfacePDFLib.php │ │ │ └── Tag │ │ │ ├── AbstractTag.php │ │ │ ├── Anchor.php │ │ │ ├── Circle.php │ │ │ ├── ClipPath.php │ │ │ ├── Ellipse.php │ │ │ ├── Group.php │ │ │ ├── Image.php │ │ │ ├── Line.php │ │ │ ├── LinearGradient.php │ │ │ ├── Path.php │ │ │ ├── Polygon.php │ │ │ ├── Polyline.php │ │ │ ├── RadialGradient.php │ │ │ ├── Rect.php │ │ │ ├── Shape.php │ │ │ ├── Stop.php │ │ │ ├── StyleTag.php │ │ │ ├── Symbol.php │ │ │ ├── Text.php │ │ │ └── UseTag.php │ │ └── sabberworm │ │ └── php-css-parser │ │ ├── CHANGELOG.md │ │ ├── LICENSE │ │ ├── README.md │ │ ├── composer.json │ │ └── src │ │ ├── CSSList │ │ ├── AtRuleBlockList.php │ │ ├── CSSBlockList.php │ │ ├── CSSList.php │ │ ├── Document.php │ │ └── KeyFrame.php │ │ ├── Comment │ │ ├── Comment.php │ │ └── Commentable.php │ │ ├── OutputFormat.php │ │ ├── OutputFormatter.php │ │ ├── Parser.php │ │ ├── Parsing │ │ ├── Anchor.php │ │ ├── OutputException.php │ │ ├── ParserState.php │ │ ├── SourceException.php │ │ ├── UnexpectedEOFException.php │ │ └── UnexpectedTokenException.php │ │ ├── Property │ │ ├── AtRule.php │ │ ├── CSSNamespace.php │ │ ├── Charset.php │ │ ├── Import.php │ │ ├── KeyframeSelector.php │ │ └── Selector.php │ │ ├── Renderable.php │ │ ├── Rule │ │ └── Rule.php │ │ ├── RuleSet │ │ ├── AtRuleSet.php │ │ ├── DeclarationBlock.php │ │ └── RuleSet.php │ │ ├── Settings.php │ │ └── Value │ │ ├── CSSFunction.php │ │ ├── CSSString.php │ │ ├── CalcFunction.php │ │ ├── CalcRuleValueList.php │ │ ├── Color.php │ │ ├── LineName.php │ │ ├── PrimitiveValue.php │ │ ├── RuleValueList.php │ │ ├── Size.php │ │ ├── URL.php │ │ ├── Value.php │ │ └── ValueList.php ├── draft(1).html ├── draft.html ├── dun_dun_dun.php ├── exportPDF-discount.php ├── exportPDF.php ├── filter │ ├── Filter$10.php │ ├── Filter$11.php │ ├── Filter$5.php │ ├── Filter$8.php │ ├── FilterCotton.php │ ├── FilterPlastic.php │ └── searchProduct.php ├── fonts │ ├── Montserrat │ │ ├── Montserrat-Black.ttf │ │ ├── Montserrat-BlackItalic.ttf │ │ ├── Montserrat-Bold.ttf │ │ ├── Montserrat-BoldItalic.ttf │ │ ├── Montserrat-ExtraBold.ttf │ │ ├── Montserrat-ExtraBoldItalic.ttf │ │ ├── Montserrat-ExtraLight.ttf │ │ ├── Montserrat-ExtraLightItalic.ttf │ │ ├── Montserrat-Italic.ttf │ │ ├── Montserrat-Light.ttf │ │ ├── Montserrat-LightItalic.ttf │ │ ├── Montserrat-Medium.ttf │ │ ├── Montserrat-MediumItalic.ttf │ │ ├── Montserrat-Regular.ttf │ │ ├── Montserrat-SemiBold.ttf │ │ ├── Montserrat-SemiBoldItalic.ttf │ │ ├── Montserrat-Thin.ttf │ │ ├── Montserrat-ThinItalic.ttf │ │ └── OFL.txt │ ├── PlayfairDisplay │ │ ├── OFL.txt │ │ ├── PlayfairDisplay-Black.ttf │ │ ├── PlayfairDisplay-BlackItalic.ttf │ │ ├── PlayfairDisplay-Bold.ttf │ │ ├── PlayfairDisplay-BoldItalic.ttf │ │ ├── PlayfairDisplay-Italic.ttf │ │ └── PlayfairDisplay-Regular.ttf │ ├── Poppins │ │ ├── Poppins-Black.ttf │ │ ├── Poppins-BlackItalic.ttf │ │ ├── Poppins-Bold.ttf │ │ ├── Poppins-BoldItalic.ttf │ │ ├── Poppins-ExtraBold.ttf │ │ ├── Poppins-ExtraBoldItalic.ttf │ │ ├── Poppins-ExtraLight.ttf │ │ ├── Poppins-ExtraLightItalic.ttf │ │ ├── Poppins-Italic.ttf │ │ ├── Poppins-Light.ttf │ │ ├── Poppins-LightItalic.ttf │ │ ├── Poppins-Medium.ttf │ │ ├── Poppins-MediumItalic.ttf │ │ ├── Poppins-Regular.ttf │ │ ├── Poppins-SemiBold.ttf │ │ ├── Poppins-SemiBoldItalic.ttf │ │ ├── Poppins-Thin.ttf │ │ └── Poppins-ThinItalic.ttf │ ├── font-awesome-4.7.0 │ │ ├── HELP-US-OUT.txt │ │ ├── css │ │ │ ├── font-awesome.css │ │ │ └── font-awesome.min.css │ │ ├── fonts │ │ │ ├── FontAwesome.otf │ │ │ ├── fontawesome-webfont.eot │ │ │ ├── fontawesome-webfont.svg │ │ │ ├── fontawesome-webfont.ttf │ │ │ ├── fontawesome-webfont.woff │ │ │ └── fontawesome-webfont.woff2 │ │ ├── less │ │ │ ├── animated.less │ │ │ ├── bordered-pulled.less │ │ │ ├── core.less │ │ │ ├── fixed-width.less │ │ │ ├── font-awesome.less │ │ │ ├── icons.less │ │ │ ├── larger.less │ │ │ ├── list.less │ │ │ ├── mixins.less │ │ │ ├── path.less │ │ │ ├── rotated-flipped.less │ │ │ ├── screen-reader.less │ │ │ ├── stacked.less │ │ │ └── variables.less │ │ └── scss │ │ │ ├── _animated.scss │ │ │ ├── _bordered-pulled.scss │ │ │ ├── _core.scss │ │ │ ├── _fixed-width.scss │ │ │ ├── _icons.scss │ │ │ ├── _larger.scss │ │ │ ├── _list.scss │ │ │ ├── _mixins.scss │ │ │ ├── _path.scss │ │ │ ├── _rotated-flipped.scss │ │ │ ├── _screen-reader.scss │ │ │ ├── _stacked.scss │ │ │ ├── _variables.scss │ │ │ └── font-awesome.scss │ ├── iconic │ │ ├── css │ │ │ ├── material-design-iconic-font.css │ │ │ └── material-design-iconic-font.min.css │ │ └── fonts │ │ │ ├── Material-Design-Iconic-Font.eot │ │ │ ├── Material-Design-Iconic-Font.svg │ │ │ ├── Material-Design-Iconic-Font.ttf │ │ │ ├── Material-Design-Iconic-Font.woff │ │ │ └── Material-Design-Iconic-Font.woff2 │ └── linearicons-v1.0.0 │ │ ├── WebFont │ │ ├── Linearicons-Free.eot │ │ ├── Linearicons-Free.svg │ │ ├── Linearicons-Free.ttf │ │ ├── Linearicons-Free.woff │ │ └── Linearicons-Free.woff2 │ │ └── icon-font.min.css ├── footer_res.css ├── frogleaf.php ├── home-02.html ├── home-03.html ├── image.css ├── images │ ├── .DS_Store │ ├── 02.jpg │ ├── 10.jpg │ ├── 19458_lego-nexo-chien-giap-clay-tuticare-2.jpg │ ├── 3.jpg │ ├── 4.jpg │ ├── 5.jpg │ ├── 6.jpg │ ├── 7.jpg │ ├── 70362.jpeg │ ├── 70362_alt1.jpg │ ├── 8.jpg │ ├── 9.jpg │ ├── About-Icon-1.webp │ ├── About-Icon-2.webp │ ├── About-Icon-4.webp │ ├── About-Icon-5.webp │ ├── About-Icon-6.webp │ ├── About-Icon-7.jpg │ ├── About-Image.webp │ ├── About-Toy-1.webp │ ├── About-Toy-2.webp │ ├── About-Toy-3.webp │ ├── About-Toy-4.webp │ ├── BinhQuyen.jpg │ ├── BinhQuyen1.jpg │ ├── Elephant.png │ ├── HuuDat.jpg │ ├── HuuDat1.jpg │ ├── Jelly Cat Flower.png │ ├── LEGO.png │ ├── LEGO_70362_1.png │ ├── LEGO_70362_2.png │ ├── LEGO_70362_3.png │ ├── LEGO_70365_1.png │ ├── LEGO_70365_2.png │ ├── LEGO_70365_3.png │ ├── Macy 1.jpg │ ├── Macy 2.jpg │ ├── Macy 3.jpg │ ├── StickerCookieRun 1.png │ ├── StickerCookieRun 2.png │ ├── StickerCookieRun 3.png │ ├── ThuyKhanh.jpg │ ├── ThuyKhanh1.jpg │ ├── ThuyLinh.jpg │ ├── ThuyLinh1.jpg │ ├── about-01.jpg │ ├── about-02.jpg │ ├── age1.jpg │ ├── airplane.jpg │ ├── avatar-01.jpg │ ├── babydoll.jpg │ ├── background-image.png │ ├── banner-01.jpg │ ├── banner-02.jpg │ ├── banner-03.jpg │ ├── banner-04.jpg │ ├── banner-05.jpg │ ├── banner-06.jpg │ ├── banner-07.jpg │ ├── banner-08.jpg │ ├── banner-09.jpg │ ├── banner1.jpg │ ├── barbie.png │ ├── barbie2.png │ ├── beach.png │ ├── beardollyellow.jpg │ ├── bearjellycat.png │ ├── beartowel.png │ ├── bg-01.jpg │ ├── bg-02(1).jpg │ ├── bg-02(2).jpg │ ├── bg-02(3).jpg │ ├── bg-02.jpg │ ├── blog-01.jpg │ ├── blog-02.jpg │ ├── blog-03.jpg │ ├── blog-04.jpg │ ├── blog-05.jpg │ ├── blog-06.jpg │ ├── buzz.png │ ├── card_img.png │ ├── category1.jpg │ ├── category2.jpg │ ├── category3.jpg │ ├── category4.jpg │ ├── category5.jpg │ ├── contactbg.png │ ├── cute.jpg │ ├── deer.png │ ├── dog.jpg │ ├── duck.png │ ├── frog.png │ ├── frog1.png │ ├── gallery-01.jpg │ ├── gallery-02.jpg │ ├── gallery-03.jpg │ ├── gallery-04.jpg │ ├── gallery-05.jpg │ ├── gallery-06.jpg │ ├── gallery-07.jpg │ ├── gallery-08.jpg │ ├── gallery-09.jpg │ ├── gifs.gif │ ├── giraffe.png │ ├── girrafite.png │ ├── hostspot.jpg │ ├── icon.png │ ├── icons │ │ ├── favicon.png │ │ ├── icon-close.png │ │ ├── icon-close2.png │ │ ├── icon-email.png │ │ ├── icon-heart-01.png │ │ ├── icon-heart-02.png │ │ ├── icon-next.png │ │ ├── icon-pay-01.png │ │ ├── icon-pay-02.png │ │ ├── icon-pay-03.png │ │ ├── icon-pay-04.png │ │ ├── icon-pay-05.png │ │ ├── icon-prev.png │ │ ├── logo-01.png │ │ ├── logo-02.png │ │ └── pin.png │ ├── intro1.jpg │ ├── intro2.jpg │ ├── intro3.jpg │ ├── introduction1.jpg │ ├── item-cart-01.jpg │ ├── item-cart-02.jpg │ ├── item-cart-03.jpg │ ├── item-cart-04.jpg │ ├── item-cart-05.jpg │ ├── jellycat.png │ ├── logicmatrix.png │ ├── logo1.jpg │ ├── logo2.jpg │ ├── logo3.jpg │ ├── logo4.jpg │ ├── logo5.jpg │ ├── logo6.jpg │ ├── logo7.jpg │ ├── monkey.jpg │ ├── monkeytoy.png │ ├── moon.png │ ├── music1.png │ ├── pig.png │ ├── pigjellycat.png │ ├── product-01.jpg │ ├── product-02.jpg │ ├── product-03.jpg │ ├── product-04.jpg │ ├── product-05.jpg │ ├── product-06.jpg │ ├── product-07.jpg │ ├── product-08.jpg │ ├── product-09.jpg │ ├── product-10.jpg │ ├── product-11.jpg │ ├── product-12.jpg │ ├── product-13.jpg │ ├── product-14.jpg │ ├── product-15.jpg │ ├── product-16.jpg │ ├── product-detail-01.jpg │ ├── product-detail-02.jpg │ ├── product-detail-03.jpg │ ├── product-min-01.jpg │ ├── product-min-02.jpg │ ├── product-min-03.jpg │ ├── rabbitdoll.png │ ├── rabit.png │ ├── rectangle1.jpg │ ├── rectangle2.jpg │ ├── rectangle3.jpg │ ├── ring.png │ ├── robot.jpg │ ├── slide-01.jpg │ ├── slide-02.jpg │ ├── slide-03.jpg │ ├── slide-04.jpg │ ├── slide-05.jpg │ ├── slide-06.jpg │ ├── slide-07.jpg │ ├── slide-08.jpg │ ├── slide-09.png │ ├── slide-10.JPEG │ ├── slide-18.png │ ├── slide-19.png │ ├── slide-20.png │ ├── slide-21.png │ ├── slide-22.png │ ├── snowman.png │ ├── teddy-bear-1.png │ ├── teddy-bear-2.jpg │ ├── teddy-bear-3.jpg │ ├── thumb-01.jpg │ ├── thumb-02.jpg │ ├── thumb-03.jpg │ ├── tiger.jpg │ ├── tiger.png │ ├── tiger2.png │ ├── unicorn.png │ └── woody.png ├── index.html ├── index.php ├── js │ ├── main.js │ ├── map-custom.js │ ├── slick-custom.js │ ├── tooltip.js │ └── update-cart.js ├── login.html ├── login.php ├── payment-credit.html ├── process_comment.php ├── product-detail.html ├── product.html ├── product.php ├── product1.php ├── product2.php ├── productdetail.php ├── register.html ├── register.php ├── search.css ├── shoping-cart.html ├── shopping-cart-coupon.php ├── shopping-cart.php ├── signup.php ├── sql │ └── toy-shop.sql ├── style.css ├── test.css ├── thank-you.php ├── update-cart.php ├── vendor │ ├── MagnificPopup │ │ ├── jquery.magnific-popup.js │ │ ├── jquery.magnific-popup.min.js │ │ └── magnific-popup.css │ ├── animate │ │ └── animate.css │ ├── animsition │ │ ├── css │ │ │ ├── animsition.css │ │ │ └── animsition.min.css │ │ └── js │ │ │ ├── animsition.js │ │ │ └── animsition.min.js │ ├── bootstrap │ │ ├── css │ │ │ ├── bootstrap-grid.css │ │ │ ├── bootstrap-grid.css.map │ │ │ ├── bootstrap-grid.min.css │ │ │ ├── bootstrap-grid.min.css.map │ │ │ ├── bootstrap-reboot.css │ │ │ ├── bootstrap-reboot.css.map │ │ │ ├── bootstrap-reboot.min.css │ │ │ ├── bootstrap-reboot.min.css.map │ │ │ ├── bootstrap.css │ │ │ ├── bootstrap.css.map │ │ │ ├── bootstrap.min.css │ │ │ └── bootstrap.min.css.map │ │ └── js │ │ │ ├── bootstrap.js │ │ │ ├── bootstrap.min.js │ │ │ ├── popper.js │ │ │ ├── popper.min.js │ │ │ └── tooltip.js │ ├── countdowntime │ │ └── countdowntime.js │ ├── css-hamburgers │ │ ├── hamburgers.css │ │ └── hamburgers.min.css │ ├── daterangepicker │ │ ├── daterangepicker.css │ │ ├── daterangepicker.js │ │ ├── moment.js │ │ └── moment.min.js │ ├── isotope │ │ └── isotope.pkgd.min.js │ ├── jquery │ │ └── jquery-3.2.1.min.js │ ├── jqueryui │ │ ├── external │ │ │ └── jquery │ │ │ │ └── jquery.js │ │ ├── images │ │ │ ├── ui-icons_444444_256x240.png │ │ │ ├── ui-icons_555555_256x240.png │ │ │ ├── ui-icons_777620_256x240.png │ │ │ ├── ui-icons_777777_256x240.png │ │ │ ├── ui-icons_cc0000_256x240.png │ │ │ └── ui-icons_ffffff_256x240.png │ │ ├── index.html │ │ ├── jquery-ui.css │ │ ├── jquery-ui.js │ │ ├── jquery-ui.min.css │ │ ├── jquery-ui.min.js │ │ ├── jquery-ui.structure.css │ │ ├── jquery-ui.structure.min.css │ │ ├── jquery-ui.theme.css │ │ └── jquery-ui.theme.min.css │ ├── lightbox2 │ │ ├── css │ │ │ ├── lightbox.css │ │ │ └── lightbox.min.css │ │ ├── images │ │ │ ├── close.png │ │ │ ├── loading.gif │ │ │ ├── next.png │ │ │ └── prev.png │ │ └── js │ │ │ ├── lightbox-plus-jquery.js │ │ │ ├── lightbox-plus-jquery.min.js │ │ │ ├── lightbox-plus-jquery.min.map │ │ │ ├── lightbox.js │ │ │ ├── lightbox.min.js │ │ │ └── lightbox.min.map │ ├── parallax100 │ │ └── parallax100.js │ ├── perfect-scrollbar │ │ ├── perfect-scrollbar.css │ │ └── perfect-scrollbar.min.js │ ├── select2 │ │ ├── select2.css │ │ ├── select2.js │ │ ├── select2.min.css │ │ └── select2.min.js │ ├── slick │ │ ├── ajax-loader.gif │ │ ├── config.rb │ │ ├── fonts │ │ │ ├── slick.eot │ │ │ ├── slick.svg │ │ │ ├── slick.ttf │ │ │ └── slick.woff │ │ ├── slick-theme.css │ │ ├── slick-theme.less │ │ ├── slick-theme.scss │ │ ├── slick.css │ │ ├── slick.js │ │ ├── slick.less │ │ ├── slick.min.js │ │ └── slick.scss │ └── sweetalert │ │ └── sweetalert.min.js ├── video.php ├── videos │ └── video.mp4 ├── wishlist.php ├── your-order-coupon.php └── your-order.php ├── LICENSE ├── README.md ├── feedback.md └── screenshot ├── Home1.jpg ├── Home2.jpg ├── Home3.jpg ├── Home4.jpg ├── Home5.jpg ├── Screen Recording 2024-05-16 at 00.01.07.mov ├── about1.jpg ├── about2.jpg ├── about3.jpg ├── about4.jpg ├── about5.jpg ├── add_product.jpg ├── admin1.jpg ├── admin2.jpg ├── blog.jpg ├── blog_detail_1.jpg ├── blog_detail_2.jpg ├── cart.jpg ├── checkout.jpg ├── checkout1.jpg ├── checkout2.jpg ├── comment_blog.jpg ├── comment_blog_2.jpg ├── comment_product.jpg ├── comment_product_2.jpg ├── contact.jpg ├── create_admin.jpg ├── edit_product.jpg ├── filter.jpg ├── footer.jpg ├── invoice.jpg ├── login.jpg ├── login_admin.jpg ├── logo.png ├── manage_comment.jpg ├── manage_order.jpg ├── manage_product.jpg ├── manage_user.jpg ├── product.jpg ├── product_detail.jpg ├── product_detail_2.jpg ├── product_detail_3.jpg ├── search.jpg ├── search_product.jpg ├── signup.jpg ├── thankyou.jpg └── wishlist.jpg /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TranHuuDat2004/Omacha-Shop/HEAD/.gitattributes -------------------------------------------------------------------------------- /.github/FUNDING.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TranHuuDat2004/Omacha-Shop/HEAD/.github/FUNDING.yml -------------------------------------------------------------------------------- /.vscode/settings.json: -------------------------------------------------------------------------------- 1 | { 2 | "liveServer.settings.port": 5502 3 | } -------------------------------------------------------------------------------- /Admin/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TranHuuDat2004/Omacha-Shop/HEAD/Admin/CHANGELOG.md -------------------------------------------------------------------------------- /Admin/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TranHuuDat2004/Omacha-Shop/HEAD/Admin/LICENSE -------------------------------------------------------------------------------- /Admin/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TranHuuDat2004/Omacha-Shop/HEAD/Admin/README.md -------------------------------------------------------------------------------- /Admin/connection/connectData.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TranHuuDat2004/Omacha-Shop/HEAD/Admin/connection/connectData.php -------------------------------------------------------------------------------- /Admin/connection/connectDiscount.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TranHuuDat2004/Omacha-Shop/HEAD/Admin/connection/connectDiscount.php -------------------------------------------------------------------------------- /Admin/connection/connectOrder.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TranHuuDat2004/Omacha-Shop/HEAD/Admin/connection/connectOrder.php -------------------------------------------------------------------------------- /Admin/connection/connectProduct.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TranHuuDat2004/Omacha-Shop/HEAD/Admin/connection/connectProduct.php -------------------------------------------------------------------------------- /Admin/connection/connectReview.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TranHuuDat2004/Omacha-Shop/HEAD/Admin/connection/connectReview.php -------------------------------------------------------------------------------- /Admin/connection/connectUser.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TranHuuDat2004/Omacha-Shop/HEAD/Admin/connection/connectUser.php -------------------------------------------------------------------------------- /Admin/connection/connectionpro.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TranHuuDat2004/Omacha-Shop/HEAD/Admin/connection/connectionpro.php -------------------------------------------------------------------------------- /Admin/connection/db.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TranHuuDat2004/Omacha-Shop/HEAD/Admin/connection/db.php -------------------------------------------------------------------------------- /Admin/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TranHuuDat2004/Omacha-Shop/HEAD/Admin/package-lock.json -------------------------------------------------------------------------------- /Admin/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TranHuuDat2004/Omacha-Shop/HEAD/Admin/package.json -------------------------------------------------------------------------------- /Admin/postcss.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TranHuuDat2004/Omacha-Shop/HEAD/Admin/postcss.config.js -------------------------------------------------------------------------------- /Admin/public/ManageOrder.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TranHuuDat2004/Omacha-Shop/HEAD/Admin/public/ManageOrder.php -------------------------------------------------------------------------------- /Admin/public/addDiscount.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TranHuuDat2004/Omacha-Shop/HEAD/Admin/public/addDiscount.php -------------------------------------------------------------------------------- /Admin/public/addProduct.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TranHuuDat2004/Omacha-Shop/HEAD/Admin/public/addProduct.html -------------------------------------------------------------------------------- /Admin/public/addProduct.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TranHuuDat2004/Omacha-Shop/HEAD/Admin/public/addProduct.php -------------------------------------------------------------------------------- /Admin/public/addWishlist.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TranHuuDat2004/Omacha-Shop/HEAD/Admin/public/addWishlist.php -------------------------------------------------------------------------------- /Admin/public/assets/css/tailwind.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TranHuuDat2004/Omacha-Shop/HEAD/Admin/public/assets/css/tailwind.css -------------------------------------------------------------------------------- /Admin/public/assets/css/tailwind.output.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TranHuuDat2004/Omacha-Shop/HEAD/Admin/public/assets/css/tailwind.output.css -------------------------------------------------------------------------------- /Admin/public/assets/img/create-account-office-dark.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TranHuuDat2004/Omacha-Shop/HEAD/Admin/public/assets/img/create-account-office-dark.jpeg -------------------------------------------------------------------------------- /Admin/public/assets/img/create-account-office.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TranHuuDat2004/Omacha-Shop/HEAD/Admin/public/assets/img/create-account-office.jpeg -------------------------------------------------------------------------------- /Admin/public/assets/img/dashboard.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TranHuuDat2004/Omacha-Shop/HEAD/Admin/public/assets/img/dashboard.png -------------------------------------------------------------------------------- /Admin/public/assets/img/forgot-password-office-dark.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TranHuuDat2004/Omacha-Shop/HEAD/Admin/public/assets/img/forgot-password-office-dark.jpeg -------------------------------------------------------------------------------- /Admin/public/assets/img/forgot-password-office.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TranHuuDat2004/Omacha-Shop/HEAD/Admin/public/assets/img/forgot-password-office.jpeg -------------------------------------------------------------------------------- /Admin/public/assets/img/github.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TranHuuDat2004/Omacha-Shop/HEAD/Admin/public/assets/img/github.svg -------------------------------------------------------------------------------- /Admin/public/assets/img/login-office-dark.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TranHuuDat2004/Omacha-Shop/HEAD/Admin/public/assets/img/login-office-dark.jpeg -------------------------------------------------------------------------------- /Admin/public/assets/img/login-office.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TranHuuDat2004/Omacha-Shop/HEAD/Admin/public/assets/img/login-office.jpeg -------------------------------------------------------------------------------- /Admin/public/assets/img/twitter.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TranHuuDat2004/Omacha-Shop/HEAD/Admin/public/assets/img/twitter.svg -------------------------------------------------------------------------------- /Admin/public/assets/js/charts-bars.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TranHuuDat2004/Omacha-Shop/HEAD/Admin/public/assets/js/charts-bars.js -------------------------------------------------------------------------------- /Admin/public/assets/js/charts-lines.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TranHuuDat2004/Omacha-Shop/HEAD/Admin/public/assets/js/charts-lines.js -------------------------------------------------------------------------------- /Admin/public/assets/js/charts-pie.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TranHuuDat2004/Omacha-Shop/HEAD/Admin/public/assets/js/charts-pie.js -------------------------------------------------------------------------------- /Admin/public/assets/js/focus-trap.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TranHuuDat2004/Omacha-Shop/HEAD/Admin/public/assets/js/focus-trap.js -------------------------------------------------------------------------------- /Admin/public/assets/js/init-alpine.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TranHuuDat2004/Omacha-Shop/HEAD/Admin/public/assets/js/init-alpine.js -------------------------------------------------------------------------------- /Admin/public/buttons.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TranHuuDat2004/Omacha-Shop/HEAD/Admin/public/buttons.html -------------------------------------------------------------------------------- /Admin/public/comment.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TranHuuDat2004/Omacha-Shop/HEAD/Admin/public/comment.html -------------------------------------------------------------------------------- /Admin/public/comment.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TranHuuDat2004/Omacha-Shop/HEAD/Admin/public/comment.php -------------------------------------------------------------------------------- /Admin/public/deleteDiscount.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TranHuuDat2004/Omacha-Shop/HEAD/Admin/public/deleteDiscount.php -------------------------------------------------------------------------------- /Admin/public/deleteOrders.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TranHuuDat2004/Omacha-Shop/HEAD/Admin/public/deleteOrders.php -------------------------------------------------------------------------------- /Admin/public/deleteProduct.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TranHuuDat2004/Omacha-Shop/HEAD/Admin/public/deleteProduct.php -------------------------------------------------------------------------------- /Admin/public/deleteReview.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TranHuuDat2004/Omacha-Shop/HEAD/Admin/public/deleteReview.php -------------------------------------------------------------------------------- /Admin/public/deleteUser.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TranHuuDat2004/Omacha-Shop/HEAD/Admin/public/deleteUser.php -------------------------------------------------------------------------------- /Admin/public/deleteWishlist.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TranHuuDat2004/Omacha-Shop/HEAD/Admin/public/deleteWishlist.php -------------------------------------------------------------------------------- /Admin/public/delete_comment.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TranHuuDat2004/Omacha-Shop/HEAD/Admin/public/delete_comment.php -------------------------------------------------------------------------------- /Admin/public/editOrder.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TranHuuDat2004/Omacha-Shop/HEAD/Admin/public/editOrder.php -------------------------------------------------------------------------------- /Admin/public/editProduct.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TranHuuDat2004/Omacha-Shop/HEAD/Admin/public/editProduct.php -------------------------------------------------------------------------------- /Admin/public/editReview1.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TranHuuDat2004/Omacha-Shop/HEAD/Admin/public/editReview1.php -------------------------------------------------------------------------------- /Admin/public/edit_comment.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TranHuuDat2004/Omacha-Shop/HEAD/Admin/public/edit_comment.php -------------------------------------------------------------------------------- /Admin/public/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TranHuuDat2004/Omacha-Shop/HEAD/Admin/public/index.html -------------------------------------------------------------------------------- /Admin/public/index.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TranHuuDat2004/Omacha-Shop/HEAD/Admin/public/index.php -------------------------------------------------------------------------------- /Admin/public/manageDiscount.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TranHuuDat2004/Omacha-Shop/HEAD/Admin/public/manageDiscount.php -------------------------------------------------------------------------------- /Admin/public/manageProduct.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TranHuuDat2004/Omacha-Shop/HEAD/Admin/public/manageProduct.html -------------------------------------------------------------------------------- /Admin/public/manageProduct.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TranHuuDat2004/Omacha-Shop/HEAD/Admin/public/manageProduct.php -------------------------------------------------------------------------------- /Admin/public/manageReview.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TranHuuDat2004/Omacha-Shop/HEAD/Admin/public/manageReview.php -------------------------------------------------------------------------------- /Admin/public/manageUser.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TranHuuDat2004/Omacha-Shop/HEAD/Admin/public/manageUser.php -------------------------------------------------------------------------------- /Admin/public/modals.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TranHuuDat2004/Omacha-Shop/HEAD/Admin/public/modals.html -------------------------------------------------------------------------------- /Admin/public/pages/404.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TranHuuDat2004/Omacha-Shop/HEAD/Admin/public/pages/404.html -------------------------------------------------------------------------------- /Admin/public/pages/blank.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TranHuuDat2004/Omacha-Shop/HEAD/Admin/public/pages/blank.html -------------------------------------------------------------------------------- /Admin/public/pages/create-account.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TranHuuDat2004/Omacha-Shop/HEAD/Admin/public/pages/create-account.html -------------------------------------------------------------------------------- /Admin/public/pages/forgot-password.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TranHuuDat2004/Omacha-Shop/HEAD/Admin/public/pages/forgot-password.html -------------------------------------------------------------------------------- /Admin/public/pages/login.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TranHuuDat2004/Omacha-Shop/HEAD/Admin/public/pages/login.html -------------------------------------------------------------------------------- /Admin/public/test.html: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Admin/public/updateOrder.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TranHuuDat2004/Omacha-Shop/HEAD/Admin/public/updateOrder.php -------------------------------------------------------------------------------- /Admin/public/updateProduct.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TranHuuDat2004/Omacha-Shop/HEAD/Admin/public/updateProduct.php -------------------------------------------------------------------------------- /Admin/tailwind.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TranHuuDat2004/Omacha-Shop/HEAD/Admin/tailwind.config.js -------------------------------------------------------------------------------- /Fontend/0_12months.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TranHuuDat2004/Omacha-Shop/HEAD/Fontend/0_12months.php -------------------------------------------------------------------------------- /Fontend/1_2years.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TranHuuDat2004/Omacha-Shop/HEAD/Fontend/1_2years.php -------------------------------------------------------------------------------- /Fontend/3+years.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TranHuuDat2004/Omacha-Shop/HEAD/Fontend/3+years.php -------------------------------------------------------------------------------- /Fontend/404.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TranHuuDat2004/Omacha-Shop/HEAD/Fontend/404.php -------------------------------------------------------------------------------- /Fontend/404b.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TranHuuDat2004/Omacha-Shop/HEAD/Fontend/404b.php -------------------------------------------------------------------------------- /Fontend/5+years.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TranHuuDat2004/Omacha-Shop/HEAD/Fontend/5+years.php -------------------------------------------------------------------------------- /Fontend/FAQ.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TranHuuDat2004/Omacha-Shop/HEAD/Fontend/FAQ.php -------------------------------------------------------------------------------- /Fontend/LEGO.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TranHuuDat2004/Omacha-Shop/HEAD/Fontend/LEGO.php -------------------------------------------------------------------------------- /Fontend/Search.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TranHuuDat2004/Omacha-Shop/HEAD/Fontend/Search.php -------------------------------------------------------------------------------- /Fontend/about.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TranHuuDat2004/Omacha-Shop/HEAD/Fontend/about.html -------------------------------------------------------------------------------- /Fontend/about.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TranHuuDat2004/Omacha-Shop/HEAD/Fontend/about.php -------------------------------------------------------------------------------- /Fontend/accept_review.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TranHuuDat2004/Omacha-Shop/HEAD/Fontend/accept_review.php -------------------------------------------------------------------------------- /Fontend/add-to-cart.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TranHuuDat2004/Omacha-Shop/HEAD/Fontend/add-to-cart.php -------------------------------------------------------------------------------- /Fontend/add-to-order.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TranHuuDat2004/Omacha-Shop/HEAD/Fontend/add-to-order.php -------------------------------------------------------------------------------- /Fontend/babylogo.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TranHuuDat2004/Omacha-Shop/HEAD/Fontend/babylogo.php -------------------------------------------------------------------------------- /Fontend/barbie.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TranHuuDat2004/Omacha-Shop/HEAD/Fontend/barbie.php -------------------------------------------------------------------------------- /Fontend/blog-detail1.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TranHuuDat2004/Omacha-Shop/HEAD/Fontend/blog-detail1.php -------------------------------------------------------------------------------- /Fontend/blog-detail10.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TranHuuDat2004/Omacha-Shop/HEAD/Fontend/blog-detail10.html -------------------------------------------------------------------------------- /Fontend/blog-detail11.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TranHuuDat2004/Omacha-Shop/HEAD/Fontend/blog-detail11.html -------------------------------------------------------------------------------- /Fontend/blog-detail2.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TranHuuDat2004/Omacha-Shop/HEAD/Fontend/blog-detail2.html -------------------------------------------------------------------------------- /Fontend/blog-detail3.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TranHuuDat2004/Omacha-Shop/HEAD/Fontend/blog-detail3.html -------------------------------------------------------------------------------- /Fontend/blog-detail4.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TranHuuDat2004/Omacha-Shop/HEAD/Fontend/blog-detail4.html -------------------------------------------------------------------------------- /Fontend/blog-detail5.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TranHuuDat2004/Omacha-Shop/HEAD/Fontend/blog-detail5.html -------------------------------------------------------------------------------- /Fontend/blog-detail6.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TranHuuDat2004/Omacha-Shop/HEAD/Fontend/blog-detail6.html -------------------------------------------------------------------------------- /Fontend/blog-detail7.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TranHuuDat2004/Omacha-Shop/HEAD/Fontend/blog-detail7.html -------------------------------------------------------------------------------- /Fontend/blog-detail8.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TranHuuDat2004/Omacha-Shop/HEAD/Fontend/blog-detail8.html -------------------------------------------------------------------------------- /Fontend/blog-detail9.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TranHuuDat2004/Omacha-Shop/HEAD/Fontend/blog-detail9.html -------------------------------------------------------------------------------- /Fontend/blog.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TranHuuDat2004/Omacha-Shop/HEAD/Fontend/blog.php -------------------------------------------------------------------------------- /Fontend/blog2.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TranHuuDat2004/Omacha-Shop/HEAD/Fontend/blog2.html -------------------------------------------------------------------------------- /Fontend/buy-it-now.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TranHuuDat2004/Omacha-Shop/HEAD/Fontend/buy-it-now.php -------------------------------------------------------------------------------- /Fontend/buy-product-coupon.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TranHuuDat2004/Omacha-Shop/HEAD/Fontend/buy-product-coupon.php -------------------------------------------------------------------------------- /Fontend/buy-product.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TranHuuDat2004/Omacha-Shop/HEAD/Fontend/buy-product.php -------------------------------------------------------------------------------- /Fontend/check-coupon.php: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /Fontend/cloudfrog.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TranHuuDat2004/Omacha-Shop/HEAD/Fontend/cloudfrog.php -------------------------------------------------------------------------------- /Fontend/connect.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TranHuuDat2004/Omacha-Shop/HEAD/Fontend/connect.php -------------------------------------------------------------------------------- /Fontend/contact.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TranHuuDat2004/Omacha-Shop/HEAD/Fontend/contact.html -------------------------------------------------------------------------------- /Fontend/contact.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TranHuuDat2004/Omacha-Shop/HEAD/Fontend/contact.php -------------------------------------------------------------------------------- /Fontend/cookie.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TranHuuDat2004/Omacha-Shop/HEAD/Fontend/cookie.php -------------------------------------------------------------------------------- /Fontend/css/box.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TranHuuDat2004/Omacha-Shop/HEAD/Fontend/css/box.css -------------------------------------------------------------------------------- /Fontend/css/cart.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TranHuuDat2004/Omacha-Shop/HEAD/Fontend/css/cart.css -------------------------------------------------------------------------------- /Fontend/css/faq.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TranHuuDat2004/Omacha-Shop/HEAD/Fontend/css/faq.css -------------------------------------------------------------------------------- /Fontend/css/main.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TranHuuDat2004/Omacha-Shop/HEAD/Fontend/css/main.css -------------------------------------------------------------------------------- /Fontend/css/product_res.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TranHuuDat2004/Omacha-Shop/HEAD/Fontend/css/product_res.css -------------------------------------------------------------------------------- /Fontend/css/them.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TranHuuDat2004/Omacha-Shop/HEAD/Fontend/css/them.css -------------------------------------------------------------------------------- /Fontend/css/util.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TranHuuDat2004/Omacha-Shop/HEAD/Fontend/css/util.css -------------------------------------------------------------------------------- /Fontend/delete-cart.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TranHuuDat2004/Omacha-Shop/HEAD/Fontend/delete-cart.php -------------------------------------------------------------------------------- /Fontend/delete-cart2.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TranHuuDat2004/Omacha-Shop/HEAD/Fontend/delete-cart2.php -------------------------------------------------------------------------------- /Fontend/dino.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TranHuuDat2004/Omacha-Shop/HEAD/Fontend/dino.php -------------------------------------------------------------------------------- /Fontend/disproduct.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TranHuuDat2004/Omacha-Shop/HEAD/Fontend/disproduct.css -------------------------------------------------------------------------------- /Fontend/dompdf/AUTHORS.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TranHuuDat2004/Omacha-Shop/HEAD/Fontend/dompdf/AUTHORS.md -------------------------------------------------------------------------------- /Fontend/dompdf/LICENSE.LGPL: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TranHuuDat2004/Omacha-Shop/HEAD/Fontend/dompdf/LICENSE.LGPL -------------------------------------------------------------------------------- /Fontend/dompdf/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TranHuuDat2004/Omacha-Shop/HEAD/Fontend/dompdf/README.md -------------------------------------------------------------------------------- /Fontend/dompdf/VERSION: -------------------------------------------------------------------------------- 1 | 2.0.8 2 | -------------------------------------------------------------------------------- /Fontend/dompdf/autoload.inc.php: -------------------------------------------------------------------------------- 1 |