├── .idea ├── .gitignore ├── FlaskEcom.iml ├── inspectionProfiles │ ├── Project_Default.xml │ └── profiles_settings.xml ├── misc.xml ├── modules.xml └── vcs.xml ├── Dockerfile ├── LICENSE ├── READMe.md ├── instance └── database.sqlite3 ├── main.py ├── media ├── back.jpg ├── customA.png ├── oraimoWatch.jpg ├── phone.jpg ├── screen.jpg ├── soundbar.jpg └── spaghetti.jpg ├── requirements.txt └── website ├── __init__.py ├── __pycache__ ├── __init__.cpython-39.pyc ├── admin.cpython-39.pyc ├── auth.cpython-39.pyc ├── forms.cpython-39.pyc ├── models.cpython-39.pyc └── views.cpython-39.pyc ├── admin.py ├── auth.py ├── forms.py ├── models.py ├── static ├── css │ ├── all.min.css │ ├── bootstrap.min.css │ ├── forms.css │ ├── owl.carousel.min.css │ └── style.css ├── images │ ├── 404.png │ ├── Banner_DB4.jpg │ ├── Content-creators.png │ ├── FreeDelivery.png │ ├── Gamers.png │ ├── KE_Food_TW_Live_0322_S.jpg │ ├── KE_Games_JumiaBox_0322_SIS_SB.jpg │ ├── KE_Phones_TW_ContentCreators_0322_S.jpg │ ├── _DB1-copy-3.jpg │ ├── _DB1.jpg │ ├── _DB3.jpg │ ├── _S_Electricity.jpg │ ├── airtime.png │ ├── back.jpg │ ├── background.jpg │ ├── center.gif │ ├── customA.png │ ├── earphone.jpg │ ├── earpods.jpg │ ├── food.png │ ├── front.jpg │ ├── help.png │ ├── mpesa.png │ ├── oraimoWatch.jpg │ ├── payment.png │ ├── phone.jpg │ ├── printer.png │ ├── return.png │ ├── right2.gif │ ├── screen.jpg │ ├── smartWatch.jpg │ ├── soundbar.jpg │ ├── spaghetti.jpg │ └── techweek.png └── js │ ├── all.min.js │ ├── jquery.js │ ├── myScript.js │ └── owl.carousel.min.js ├── templates ├── 404.html ├── add_shop_items.html ├── admin.html ├── base.html ├── cart.html ├── change_password.html ├── customers.html ├── forms.html ├── home.html ├── login.html ├── order_update.html ├── orders.html ├── profile.html ├── search.html ├── shop_items.html ├── signup.html ├── update_item.html └── view_orders.html └── views.py /.idea/.gitignore: -------------------------------------------------------------------------------- 1 | # Default ignored files 2 | /shelf/ 3 | /workspace.xml 4 | -------------------------------------------------------------------------------- /.idea/FlaskEcom.iml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frost-Codes/Flask-Ecommerce/HEAD/.idea/FlaskEcom.iml -------------------------------------------------------------------------------- /.idea/inspectionProfiles/Project_Default.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frost-Codes/Flask-Ecommerce/HEAD/.idea/inspectionProfiles/Project_Default.xml -------------------------------------------------------------------------------- /.idea/inspectionProfiles/profiles_settings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frost-Codes/Flask-Ecommerce/HEAD/.idea/inspectionProfiles/profiles_settings.xml -------------------------------------------------------------------------------- /.idea/misc.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frost-Codes/Flask-Ecommerce/HEAD/.idea/misc.xml -------------------------------------------------------------------------------- /.idea/modules.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frost-Codes/Flask-Ecommerce/HEAD/.idea/modules.xml -------------------------------------------------------------------------------- /.idea/vcs.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frost-Codes/Flask-Ecommerce/HEAD/.idea/vcs.xml -------------------------------------------------------------------------------- /Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frost-Codes/Flask-Ecommerce/HEAD/Dockerfile -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frost-Codes/Flask-Ecommerce/HEAD/LICENSE -------------------------------------------------------------------------------- /READMe.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frost-Codes/Flask-Ecommerce/HEAD/READMe.md -------------------------------------------------------------------------------- /instance/database.sqlite3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frost-Codes/Flask-Ecommerce/HEAD/instance/database.sqlite3 -------------------------------------------------------------------------------- /main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frost-Codes/Flask-Ecommerce/HEAD/main.py -------------------------------------------------------------------------------- /media/back.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frost-Codes/Flask-Ecommerce/HEAD/media/back.jpg -------------------------------------------------------------------------------- /media/customA.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frost-Codes/Flask-Ecommerce/HEAD/media/customA.png -------------------------------------------------------------------------------- /media/oraimoWatch.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frost-Codes/Flask-Ecommerce/HEAD/media/oraimoWatch.jpg -------------------------------------------------------------------------------- /media/phone.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frost-Codes/Flask-Ecommerce/HEAD/media/phone.jpg -------------------------------------------------------------------------------- /media/screen.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frost-Codes/Flask-Ecommerce/HEAD/media/screen.jpg -------------------------------------------------------------------------------- /media/soundbar.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frost-Codes/Flask-Ecommerce/HEAD/media/soundbar.jpg -------------------------------------------------------------------------------- /media/spaghetti.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frost-Codes/Flask-Ecommerce/HEAD/media/spaghetti.jpg -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frost-Codes/Flask-Ecommerce/HEAD/requirements.txt -------------------------------------------------------------------------------- /website/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frost-Codes/Flask-Ecommerce/HEAD/website/__init__.py -------------------------------------------------------------------------------- /website/__pycache__/__init__.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frost-Codes/Flask-Ecommerce/HEAD/website/__pycache__/__init__.cpython-39.pyc -------------------------------------------------------------------------------- /website/__pycache__/admin.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frost-Codes/Flask-Ecommerce/HEAD/website/__pycache__/admin.cpython-39.pyc -------------------------------------------------------------------------------- /website/__pycache__/auth.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frost-Codes/Flask-Ecommerce/HEAD/website/__pycache__/auth.cpython-39.pyc -------------------------------------------------------------------------------- /website/__pycache__/forms.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frost-Codes/Flask-Ecommerce/HEAD/website/__pycache__/forms.cpython-39.pyc -------------------------------------------------------------------------------- /website/__pycache__/models.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frost-Codes/Flask-Ecommerce/HEAD/website/__pycache__/models.cpython-39.pyc -------------------------------------------------------------------------------- /website/__pycache__/views.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frost-Codes/Flask-Ecommerce/HEAD/website/__pycache__/views.cpython-39.pyc -------------------------------------------------------------------------------- /website/admin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frost-Codes/Flask-Ecommerce/HEAD/website/admin.py -------------------------------------------------------------------------------- /website/auth.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frost-Codes/Flask-Ecommerce/HEAD/website/auth.py -------------------------------------------------------------------------------- /website/forms.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frost-Codes/Flask-Ecommerce/HEAD/website/forms.py -------------------------------------------------------------------------------- /website/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frost-Codes/Flask-Ecommerce/HEAD/website/models.py -------------------------------------------------------------------------------- /website/static/css/all.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frost-Codes/Flask-Ecommerce/HEAD/website/static/css/all.min.css -------------------------------------------------------------------------------- /website/static/css/bootstrap.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frost-Codes/Flask-Ecommerce/HEAD/website/static/css/bootstrap.min.css -------------------------------------------------------------------------------- /website/static/css/forms.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frost-Codes/Flask-Ecommerce/HEAD/website/static/css/forms.css -------------------------------------------------------------------------------- /website/static/css/owl.carousel.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frost-Codes/Flask-Ecommerce/HEAD/website/static/css/owl.carousel.min.css -------------------------------------------------------------------------------- /website/static/css/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frost-Codes/Flask-Ecommerce/HEAD/website/static/css/style.css -------------------------------------------------------------------------------- /website/static/images/404.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frost-Codes/Flask-Ecommerce/HEAD/website/static/images/404.png -------------------------------------------------------------------------------- /website/static/images/Banner_DB4.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frost-Codes/Flask-Ecommerce/HEAD/website/static/images/Banner_DB4.jpg -------------------------------------------------------------------------------- /website/static/images/Content-creators.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frost-Codes/Flask-Ecommerce/HEAD/website/static/images/Content-creators.png -------------------------------------------------------------------------------- /website/static/images/FreeDelivery.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frost-Codes/Flask-Ecommerce/HEAD/website/static/images/FreeDelivery.png -------------------------------------------------------------------------------- /website/static/images/Gamers.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frost-Codes/Flask-Ecommerce/HEAD/website/static/images/Gamers.png -------------------------------------------------------------------------------- /website/static/images/KE_Food_TW_Live_0322_S.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frost-Codes/Flask-Ecommerce/HEAD/website/static/images/KE_Food_TW_Live_0322_S.jpg -------------------------------------------------------------------------------- /website/static/images/KE_Games_JumiaBox_0322_SIS_SB.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frost-Codes/Flask-Ecommerce/HEAD/website/static/images/KE_Games_JumiaBox_0322_SIS_SB.jpg -------------------------------------------------------------------------------- /website/static/images/KE_Phones_TW_ContentCreators_0322_S.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frost-Codes/Flask-Ecommerce/HEAD/website/static/images/KE_Phones_TW_ContentCreators_0322_S.jpg -------------------------------------------------------------------------------- /website/static/images/_DB1-copy-3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frost-Codes/Flask-Ecommerce/HEAD/website/static/images/_DB1-copy-3.jpg -------------------------------------------------------------------------------- /website/static/images/_DB1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frost-Codes/Flask-Ecommerce/HEAD/website/static/images/_DB1.jpg -------------------------------------------------------------------------------- /website/static/images/_DB3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frost-Codes/Flask-Ecommerce/HEAD/website/static/images/_DB3.jpg -------------------------------------------------------------------------------- /website/static/images/_S_Electricity.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frost-Codes/Flask-Ecommerce/HEAD/website/static/images/_S_Electricity.jpg -------------------------------------------------------------------------------- /website/static/images/airtime.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frost-Codes/Flask-Ecommerce/HEAD/website/static/images/airtime.png -------------------------------------------------------------------------------- /website/static/images/back.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frost-Codes/Flask-Ecommerce/HEAD/website/static/images/back.jpg -------------------------------------------------------------------------------- /website/static/images/background.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frost-Codes/Flask-Ecommerce/HEAD/website/static/images/background.jpg -------------------------------------------------------------------------------- /website/static/images/center.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frost-Codes/Flask-Ecommerce/HEAD/website/static/images/center.gif -------------------------------------------------------------------------------- /website/static/images/customA.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frost-Codes/Flask-Ecommerce/HEAD/website/static/images/customA.png -------------------------------------------------------------------------------- /website/static/images/earphone.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frost-Codes/Flask-Ecommerce/HEAD/website/static/images/earphone.jpg -------------------------------------------------------------------------------- /website/static/images/earpods.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frost-Codes/Flask-Ecommerce/HEAD/website/static/images/earpods.jpg -------------------------------------------------------------------------------- /website/static/images/food.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frost-Codes/Flask-Ecommerce/HEAD/website/static/images/food.png -------------------------------------------------------------------------------- /website/static/images/front.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frost-Codes/Flask-Ecommerce/HEAD/website/static/images/front.jpg -------------------------------------------------------------------------------- /website/static/images/help.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frost-Codes/Flask-Ecommerce/HEAD/website/static/images/help.png -------------------------------------------------------------------------------- /website/static/images/mpesa.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frost-Codes/Flask-Ecommerce/HEAD/website/static/images/mpesa.png -------------------------------------------------------------------------------- /website/static/images/oraimoWatch.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frost-Codes/Flask-Ecommerce/HEAD/website/static/images/oraimoWatch.jpg -------------------------------------------------------------------------------- /website/static/images/payment.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frost-Codes/Flask-Ecommerce/HEAD/website/static/images/payment.png -------------------------------------------------------------------------------- /website/static/images/phone.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frost-Codes/Flask-Ecommerce/HEAD/website/static/images/phone.jpg -------------------------------------------------------------------------------- /website/static/images/printer.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frost-Codes/Flask-Ecommerce/HEAD/website/static/images/printer.png -------------------------------------------------------------------------------- /website/static/images/return.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frost-Codes/Flask-Ecommerce/HEAD/website/static/images/return.png -------------------------------------------------------------------------------- /website/static/images/right2.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frost-Codes/Flask-Ecommerce/HEAD/website/static/images/right2.gif -------------------------------------------------------------------------------- /website/static/images/screen.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frost-Codes/Flask-Ecommerce/HEAD/website/static/images/screen.jpg -------------------------------------------------------------------------------- /website/static/images/smartWatch.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frost-Codes/Flask-Ecommerce/HEAD/website/static/images/smartWatch.jpg -------------------------------------------------------------------------------- /website/static/images/soundbar.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frost-Codes/Flask-Ecommerce/HEAD/website/static/images/soundbar.jpg -------------------------------------------------------------------------------- /website/static/images/spaghetti.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frost-Codes/Flask-Ecommerce/HEAD/website/static/images/spaghetti.jpg -------------------------------------------------------------------------------- /website/static/images/techweek.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frost-Codes/Flask-Ecommerce/HEAD/website/static/images/techweek.png -------------------------------------------------------------------------------- /website/static/js/all.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frost-Codes/Flask-Ecommerce/HEAD/website/static/js/all.min.js -------------------------------------------------------------------------------- /website/static/js/jquery.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frost-Codes/Flask-Ecommerce/HEAD/website/static/js/jquery.js -------------------------------------------------------------------------------- /website/static/js/myScript.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frost-Codes/Flask-Ecommerce/HEAD/website/static/js/myScript.js -------------------------------------------------------------------------------- /website/static/js/owl.carousel.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frost-Codes/Flask-Ecommerce/HEAD/website/static/js/owl.carousel.min.js -------------------------------------------------------------------------------- /website/templates/404.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frost-Codes/Flask-Ecommerce/HEAD/website/templates/404.html -------------------------------------------------------------------------------- /website/templates/add_shop_items.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frost-Codes/Flask-Ecommerce/HEAD/website/templates/add_shop_items.html -------------------------------------------------------------------------------- /website/templates/admin.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frost-Codes/Flask-Ecommerce/HEAD/website/templates/admin.html -------------------------------------------------------------------------------- /website/templates/base.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frost-Codes/Flask-Ecommerce/HEAD/website/templates/base.html -------------------------------------------------------------------------------- /website/templates/cart.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frost-Codes/Flask-Ecommerce/HEAD/website/templates/cart.html -------------------------------------------------------------------------------- /website/templates/change_password.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frost-Codes/Flask-Ecommerce/HEAD/website/templates/change_password.html -------------------------------------------------------------------------------- /website/templates/customers.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frost-Codes/Flask-Ecommerce/HEAD/website/templates/customers.html -------------------------------------------------------------------------------- /website/templates/forms.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frost-Codes/Flask-Ecommerce/HEAD/website/templates/forms.html -------------------------------------------------------------------------------- /website/templates/home.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frost-Codes/Flask-Ecommerce/HEAD/website/templates/home.html -------------------------------------------------------------------------------- /website/templates/login.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frost-Codes/Flask-Ecommerce/HEAD/website/templates/login.html -------------------------------------------------------------------------------- /website/templates/order_update.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frost-Codes/Flask-Ecommerce/HEAD/website/templates/order_update.html -------------------------------------------------------------------------------- /website/templates/orders.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frost-Codes/Flask-Ecommerce/HEAD/website/templates/orders.html -------------------------------------------------------------------------------- /website/templates/profile.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frost-Codes/Flask-Ecommerce/HEAD/website/templates/profile.html -------------------------------------------------------------------------------- /website/templates/search.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frost-Codes/Flask-Ecommerce/HEAD/website/templates/search.html -------------------------------------------------------------------------------- /website/templates/shop_items.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frost-Codes/Flask-Ecommerce/HEAD/website/templates/shop_items.html -------------------------------------------------------------------------------- /website/templates/signup.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frost-Codes/Flask-Ecommerce/HEAD/website/templates/signup.html -------------------------------------------------------------------------------- /website/templates/update_item.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frost-Codes/Flask-Ecommerce/HEAD/website/templates/update_item.html -------------------------------------------------------------------------------- /website/templates/view_orders.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frost-Codes/Flask-Ecommerce/HEAD/website/templates/view_orders.html -------------------------------------------------------------------------------- /website/views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frost-Codes/Flask-Ecommerce/HEAD/website/views.py --------------------------------------------------------------------------------