Build an example shopping site
Budget: $10 – $30 USD
I need a simple shopping site with python3.8 and Flask.
Site need to have a main page that has 20 products, cart page, checkout page and success payment page.
Each product has a sub page with name, image and price.
You can add to cart from main page and from product page.
The cart simply shows the selected items, 'checkout" and "cancel" button. checkout leads to checkout page.
checkout page you can place a card number, send the data to an endpoint at the backend, returns 200 and redirects the user to the success page.
DB should be a simple json file:
[{"productName": "name", "imageUrl": "url", "price": 300}]
Site need to have a main page that has 20 products, cart page, checkout page and success payment page.
Each product has a sub page with name, image and price.
You can add to cart from main page and from product page.
The cart simply shows the selected items, 'checkout" and "cancel" button. checkout leads to checkout page.
checkout page you can place a card number, send the data to an endpoint at the backend, returns 200 and redirects the user to the success page.
DB should be a simple json file:
[{"productName": "name", "imageUrl": "url", "price": 300}]