

├── .gitignore ├── LICENSE ├── README.md ├── cart.html ├── categories.html ├── dashboard-account.html ├── dashboard-products-create.html ├── dashboard-products-details.html ├── dashboard-products.html ├── dashboard-settings.html ├── dashboard-transactions-details.html ├── dashboard-transactions.html ├── dashboard.html ├── details.html ├── images ├── banner.jpg ├── categories-baby.svg ├── categories-furniture.svg ├── categories-gadgets.svg ├── categories-makeup.svg ├── categories-sneaker.svg ├── categories-tools.svg ├── dashboard-arrow-right.svg ├── dashboard-icon-product-1.png ├── dashboard-icon-product-2.png ├── dashboard-icon-product-3.png ├── dashboard-store-logo.svg ├── icon-cart-empty.svg ├── icon-cart-filled.svg ├── icon-cart.svg ├── icon-delete.svg ├── icon-testimonial-1.png ├── icon-testimonial-2.png ├── icon-testimonial-3.png ├── icon-user.png ├── login-placeholder.png ├── logo.svg ├── product-card-1.png ├── product-card-2.png ├── product-card-3.png ├── product-card-4.png ├── product-card-5.png ├── product-cart-1.jpg ├── product-cart-2.jpg ├── product-cart-3.jpg ├── product-details-1.jpg ├── product-details-2.jpg ├── product-details-3.jpg ├── product-details-4.jpg ├── product-details-dashboard.png ├── product-thumbnail-1.jpg ├── product-thumbnail-2.jpg ├── product-thumbnail-3.jpg ├── product-thumbnail-4.jpg ├── products-apple-watch.jpg ├── products-black-edition-nike.jpg ├── products-bubuk-maketti.jpg ├── products-mavic-kawe.jpg ├── products-monkey-toys.jpg ├── products-orange-bogotta.jpg ├── products-sofa-ternyaman.jpg ├── products-tatakan-gelas.jpg └── success.svg ├── index.html ├── login.html ├── register-success.html ├── register.html ├── script └── navbar-scroll.js ├── style ├── _fonts.scss ├── _global.scss ├── _navbar.scss ├── components │ ├── _breadcrumbs.scss │ ├── _card.scss │ ├── _card_dashboard.scss │ ├── _card_list.scss │ ├── _categories.scss │ └── _products.scss ├── main.css ├── main.css.map ├── main.scss ├── pages │ ├── _auth.scss │ ├── _cart.scss │ ├── _categories.scss │ ├── _dashboard.scss │ ├── _details.scss │ ├── _home.scss │ └── _success.scss └── transitions │ └── _slide-fade.scss ├── success.html └── vendor ├── 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.bundle.js │ ├── bootstrap.bundle.js.map │ ├── bootstrap.bundle.min.js │ ├── bootstrap.bundle.min.js.map │ ├── bootstrap.js │ ├── bootstrap.js.map │ ├── bootstrap.min.js │ └── bootstrap.min.js.map └── scss │ ├── _alert.scss │ ├── _badge.scss │ ├── _breadcrumb.scss │ ├── _button-group.scss │ ├── _buttons.scss │ ├── _card.scss │ ├── _carousel.scss │ ├── _close.scss │ ├── _code.scss │ ├── _custom-forms.scss │ ├── _dropdown.scss │ ├── _forms.scss │ ├── _functions.scss │ ├── _grid.scss │ ├── _images.scss │ ├── _input-group.scss │ ├── _jumbotron.scss │ ├── _list-group.scss │ ├── _media.scss │ ├── _mixins.scss │ ├── _modal.scss │ ├── _nav.scss │ ├── _navbar.scss │ ├── _pagination.scss │ ├── _popover.scss │ ├── _print.scss │ ├── _progress.scss │ ├── _reboot.scss │ ├── _root.scss │ ├── _spinners.scss │ ├── _tables.scss │ ├── _toasts.scss │ ├── _tooltip.scss │ ├── _transitions.scss │ ├── _type.scss │ ├── _utilities.scss │ ├── _variables.scss │ ├── bootstrap-grid.css │ ├── bootstrap-grid.css.map │ ├── bootstrap-grid.scss │ ├── bootstrap-reboot.css │ ├── bootstrap-reboot.css.map │ ├── bootstrap-reboot.scss │ ├── bootstrap.css │ ├── bootstrap.css.map │ ├── bootstrap.scss │ ├── mixins │ ├── _alert.scss │ ├── _background-variant.scss │ ├── _badge.scss │ ├── _border-radius.scss │ ├── _box-shadow.scss │ ├── _breakpoints.scss │ ├── _buttons.scss │ ├── _caret.scss │ ├── _clearfix.scss │ ├── _deprecate.scss │ ├── _float.scss │ ├── _forms.scss │ ├── _gradients.scss │ ├── _grid-framework.scss │ ├── _grid.scss │ ├── _hover.scss │ ├── _image.scss │ ├── _list-group.scss │ ├── _lists.scss │ ├── _nav-divider.scss │ ├── _pagination.scss │ ├── _reset-text.scss │ ├── _resize.scss │ ├── _screen-reader.scss │ ├── _size.scss │ ├── _table-row.scss │ ├── _text-emphasis.scss │ ├── _text-hide.scss │ ├── _text-truncate.scss │ ├── _transition.scss │ └── _visibility.scss │ ├── utilities │ ├── _align.scss │ ├── _background.scss │ ├── _borders.scss │ ├── _clearfix.scss │ ├── _display.scss │ ├── _embed.scss │ ├── _flex.scss │ ├── _float.scss │ ├── _interactions.scss │ ├── _overflow.scss │ ├── _position.scss │ ├── _screenreaders.scss │ ├── _shadows.scss │ ├── _sizing.scss │ ├── _spacing.scss │ ├── _stretched-link.scss │ ├── _text.scss │ └── _visibility.scss │ └── vendor │ └── _rfs.scss ├── jquery ├── jquery.js ├── jquery.min.js ├── jquery.min.map ├── jquery.slim.js ├── jquery.slim.min.js └── jquery.slim.min.map └── vue ├── vue.js └── vue.min.js /.gitignore: -------------------------------------------------------------------------------- 1 | node_modules -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- 1 | MIT License 2 | 3 | Copyright (c) 2020 Galih Pratama 4 | 5 | Permission is hereby granted, free of charge, to any person obtaining a copy 6 | of this software and associated documentation files (the "Software"), to deal 7 | in the Software without restriction, including without limitation the rights 8 | to use, copy, modify, merge, publish, distribute, sublicense, and/or sell 9 | copies of the Software, and to permit persons to whom the Software is 10 | furnished to do so, subject to the following conditions: 11 | 12 | The above copyright notice and this permission notice shall be included in all 13 | copies or substantial portions of the Software. 14 | 15 | THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR 16 | IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, 17 | FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE 18 | AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER 19 | LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, 20 | OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE 21 | SOFTWARE. 22 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # BWAStore HTML Source Code 2 | Source Code ini hasil project slicing HTML pada video tutorial [BWASTORE](https://bit.ly/BWASTORE) 3 | 4 | ## Lisensi 5 | 6 | MIT License 7 | 8 | Copyright (c) 2020 Galih Pratama 9 | 10 | Permission is hereby granted, free of charge, to any person obtaining a copy 11 | of this software and associated documentation files (the "Software"), to deal 12 | in the Software without restriction, including without limitation the rights 13 | to use, copy, modify, merge, publish, distribute, sublicense, and/or sell 14 | copies of the Software, and to permit persons to whom the Software is 15 | furnished to do so, subject to the following conditions: 16 | 17 | The above copyright notice and this permission notice shall be included in all 18 | copies or substantial portions of the Software. 19 | 20 | THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR 21 | IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, 22 | FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE 23 | AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER 24 | LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, 25 | OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE 26 | SOFTWARE. 27 | 28 |
30 | Kamu sudah berhasil terdaftar
31 | bersama kami. Let’s grow up now.
32 |
30 | Silahkan tunggu konfirmasi email dari kami dan
31 | kami akan menginformasikan resi secept mungkin!
32 |