├── README.md ├── account.html ├── account.php ├── assets ├── banner │ ├── Banner0.png │ ├── Banner1.png │ ├── Banner2.png │ └── Banner3.png ├── blog │ ├── blog1.jpg │ ├── blog2.jpg │ └── blog3.jpg ├── discount.jpg ├── empty_cart.png ├── freeship.jpg ├── phone.png └── products │ ├── 1.png │ ├── 10.png │ ├── 11.png │ ├── 12.png │ ├── 13.png │ ├── 14.png │ ├── 15.png │ ├── 2.png │ ├── 3.png │ ├── 4.png │ ├── 5.png │ ├── 6.png │ ├── 7.png │ ├── 8.png │ └── 9.png ├── cart.html ├── cart.php ├── func ├── Account.php ├── Cart.php ├── DBConnect.php ├── Manage.php ├── Product.php ├── footer.php ├── functions.php └── header.php ├── index.html ├── index.php ├── libs ├── _account-form.php ├── _banner-ads.php ├── _banner-area.php ├── _blogs.php ├── _cart-notFound.php ├── _cart-template.php ├── _login-form.php ├── _manage-product.php ├── _new-phones.php ├── _products.php ├── _register-form.php ├── _special-price.php └── _top-sale.php ├── login.html ├── login.php ├── manage.html ├── manage.php ├── mobileshop.sql ├── product.html ├── product.php ├── register.html ├── register.php ├── sass ├── include │ ├── color.scss │ ├── global.scss │ ├── special-price.scss │ ├── top-sale.scss │ ├── typography.scss │ └── variables.scss └── style.scss ├── script.js ├── style.css └── tech.txt /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucthienphong1120/mobile-shop-backend/HEAD/README.md -------------------------------------------------------------------------------- /account.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucthienphong1120/mobile-shop-backend/HEAD/account.html -------------------------------------------------------------------------------- /account.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucthienphong1120/mobile-shop-backend/HEAD/account.php -------------------------------------------------------------------------------- /assets/banner/Banner0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucthienphong1120/mobile-shop-backend/HEAD/assets/banner/Banner0.png -------------------------------------------------------------------------------- /assets/banner/Banner1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucthienphong1120/mobile-shop-backend/HEAD/assets/banner/Banner1.png -------------------------------------------------------------------------------- /assets/banner/Banner2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucthienphong1120/mobile-shop-backend/HEAD/assets/banner/Banner2.png -------------------------------------------------------------------------------- /assets/banner/Banner3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucthienphong1120/mobile-shop-backend/HEAD/assets/banner/Banner3.png -------------------------------------------------------------------------------- /assets/blog/blog1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucthienphong1120/mobile-shop-backend/HEAD/assets/blog/blog1.jpg -------------------------------------------------------------------------------- /assets/blog/blog2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucthienphong1120/mobile-shop-backend/HEAD/assets/blog/blog2.jpg -------------------------------------------------------------------------------- /assets/blog/blog3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucthienphong1120/mobile-shop-backend/HEAD/assets/blog/blog3.jpg -------------------------------------------------------------------------------- /assets/discount.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucthienphong1120/mobile-shop-backend/HEAD/assets/discount.jpg -------------------------------------------------------------------------------- /assets/empty_cart.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucthienphong1120/mobile-shop-backend/HEAD/assets/empty_cart.png -------------------------------------------------------------------------------- /assets/freeship.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucthienphong1120/mobile-shop-backend/HEAD/assets/freeship.jpg -------------------------------------------------------------------------------- /assets/phone.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucthienphong1120/mobile-shop-backend/HEAD/assets/phone.png -------------------------------------------------------------------------------- /assets/products/1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucthienphong1120/mobile-shop-backend/HEAD/assets/products/1.png -------------------------------------------------------------------------------- /assets/products/10.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucthienphong1120/mobile-shop-backend/HEAD/assets/products/10.png -------------------------------------------------------------------------------- /assets/products/11.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucthienphong1120/mobile-shop-backend/HEAD/assets/products/11.png -------------------------------------------------------------------------------- /assets/products/12.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucthienphong1120/mobile-shop-backend/HEAD/assets/products/12.png -------------------------------------------------------------------------------- /assets/products/13.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucthienphong1120/mobile-shop-backend/HEAD/assets/products/13.png -------------------------------------------------------------------------------- /assets/products/14.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucthienphong1120/mobile-shop-backend/HEAD/assets/products/14.png -------------------------------------------------------------------------------- /assets/products/15.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucthienphong1120/mobile-shop-backend/HEAD/assets/products/15.png -------------------------------------------------------------------------------- /assets/products/2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucthienphong1120/mobile-shop-backend/HEAD/assets/products/2.png -------------------------------------------------------------------------------- /assets/products/3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucthienphong1120/mobile-shop-backend/HEAD/assets/products/3.png -------------------------------------------------------------------------------- /assets/products/4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucthienphong1120/mobile-shop-backend/HEAD/assets/products/4.png -------------------------------------------------------------------------------- /assets/products/5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucthienphong1120/mobile-shop-backend/HEAD/assets/products/5.png -------------------------------------------------------------------------------- /assets/products/6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucthienphong1120/mobile-shop-backend/HEAD/assets/products/6.png -------------------------------------------------------------------------------- /assets/products/7.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucthienphong1120/mobile-shop-backend/HEAD/assets/products/7.png -------------------------------------------------------------------------------- /assets/products/8.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucthienphong1120/mobile-shop-backend/HEAD/assets/products/8.png -------------------------------------------------------------------------------- /assets/products/9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucthienphong1120/mobile-shop-backend/HEAD/assets/products/9.png -------------------------------------------------------------------------------- /cart.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucthienphong1120/mobile-shop-backend/HEAD/cart.html -------------------------------------------------------------------------------- /cart.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucthienphong1120/mobile-shop-backend/HEAD/cart.php -------------------------------------------------------------------------------- /func/Account.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucthienphong1120/mobile-shop-backend/HEAD/func/Account.php -------------------------------------------------------------------------------- /func/Cart.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucthienphong1120/mobile-shop-backend/HEAD/func/Cart.php -------------------------------------------------------------------------------- /func/DBConnect.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucthienphong1120/mobile-shop-backend/HEAD/func/DBConnect.php -------------------------------------------------------------------------------- /func/Manage.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucthienphong1120/mobile-shop-backend/HEAD/func/Manage.php -------------------------------------------------------------------------------- /func/Product.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucthienphong1120/mobile-shop-backend/HEAD/func/Product.php -------------------------------------------------------------------------------- /func/footer.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucthienphong1120/mobile-shop-backend/HEAD/func/footer.php -------------------------------------------------------------------------------- /func/functions.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucthienphong1120/mobile-shop-backend/HEAD/func/functions.php -------------------------------------------------------------------------------- /func/header.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucthienphong1120/mobile-shop-backend/HEAD/func/header.php -------------------------------------------------------------------------------- /index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucthienphong1120/mobile-shop-backend/HEAD/index.html -------------------------------------------------------------------------------- /index.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucthienphong1120/mobile-shop-backend/HEAD/index.php -------------------------------------------------------------------------------- /libs/_account-form.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucthienphong1120/mobile-shop-backend/HEAD/libs/_account-form.php -------------------------------------------------------------------------------- /libs/_banner-ads.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucthienphong1120/mobile-shop-backend/HEAD/libs/_banner-ads.php -------------------------------------------------------------------------------- /libs/_banner-area.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucthienphong1120/mobile-shop-backend/HEAD/libs/_banner-area.php -------------------------------------------------------------------------------- /libs/_blogs.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucthienphong1120/mobile-shop-backend/HEAD/libs/_blogs.php -------------------------------------------------------------------------------- /libs/_cart-notFound.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucthienphong1120/mobile-shop-backend/HEAD/libs/_cart-notFound.php -------------------------------------------------------------------------------- /libs/_cart-template.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucthienphong1120/mobile-shop-backend/HEAD/libs/_cart-template.php -------------------------------------------------------------------------------- /libs/_login-form.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucthienphong1120/mobile-shop-backend/HEAD/libs/_login-form.php -------------------------------------------------------------------------------- /libs/_manage-product.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucthienphong1120/mobile-shop-backend/HEAD/libs/_manage-product.php -------------------------------------------------------------------------------- /libs/_new-phones.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucthienphong1120/mobile-shop-backend/HEAD/libs/_new-phones.php -------------------------------------------------------------------------------- /libs/_products.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucthienphong1120/mobile-shop-backend/HEAD/libs/_products.php -------------------------------------------------------------------------------- /libs/_register-form.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucthienphong1120/mobile-shop-backend/HEAD/libs/_register-form.php -------------------------------------------------------------------------------- /libs/_special-price.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucthienphong1120/mobile-shop-backend/HEAD/libs/_special-price.php -------------------------------------------------------------------------------- /libs/_top-sale.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucthienphong1120/mobile-shop-backend/HEAD/libs/_top-sale.php -------------------------------------------------------------------------------- /login.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucthienphong1120/mobile-shop-backend/HEAD/login.html -------------------------------------------------------------------------------- /login.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucthienphong1120/mobile-shop-backend/HEAD/login.php -------------------------------------------------------------------------------- /manage.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucthienphong1120/mobile-shop-backend/HEAD/manage.html -------------------------------------------------------------------------------- /manage.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucthienphong1120/mobile-shop-backend/HEAD/manage.php -------------------------------------------------------------------------------- /mobileshop.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucthienphong1120/mobile-shop-backend/HEAD/mobileshop.sql -------------------------------------------------------------------------------- /product.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucthienphong1120/mobile-shop-backend/HEAD/product.html -------------------------------------------------------------------------------- /product.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucthienphong1120/mobile-shop-backend/HEAD/product.php -------------------------------------------------------------------------------- /register.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucthienphong1120/mobile-shop-backend/HEAD/register.html -------------------------------------------------------------------------------- /register.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucthienphong1120/mobile-shop-backend/HEAD/register.php -------------------------------------------------------------------------------- /sass/include/color.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucthienphong1120/mobile-shop-backend/HEAD/sass/include/color.scss -------------------------------------------------------------------------------- /sass/include/global.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucthienphong1120/mobile-shop-backend/HEAD/sass/include/global.scss -------------------------------------------------------------------------------- /sass/include/special-price.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucthienphong1120/mobile-shop-backend/HEAD/sass/include/special-price.scss -------------------------------------------------------------------------------- /sass/include/top-sale.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucthienphong1120/mobile-shop-backend/HEAD/sass/include/top-sale.scss -------------------------------------------------------------------------------- /sass/include/typography.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucthienphong1120/mobile-shop-backend/HEAD/sass/include/typography.scss -------------------------------------------------------------------------------- /sass/include/variables.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucthienphong1120/mobile-shop-backend/HEAD/sass/include/variables.scss -------------------------------------------------------------------------------- /sass/style.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucthienphong1120/mobile-shop-backend/HEAD/sass/style.scss -------------------------------------------------------------------------------- /script.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucthienphong1120/mobile-shop-backend/HEAD/script.js -------------------------------------------------------------------------------- /style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucthienphong1120/mobile-shop-backend/HEAD/style.css -------------------------------------------------------------------------------- /tech.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucthienphong1120/mobile-shop-backend/HEAD/tech.txt --------------------------------------------------------------------------------