├── .classpath ├── .gitattributes ├── .project ├── .settings ├── .jsdtscope ├── org.eclipse.jdt.core.prefs ├── org.eclipse.wst.common.component ├── org.eclipse.wst.common.project.facet.core.xml ├── org.eclipse.wst.jsdt.ui.superType.container └── org.eclipse.wst.jsdt.ui.superType.name ├── Database └── ospjsp.sql ├── README.md ├── WebContent ├── META-INF │ └── MANIFEST.MF ├── WEB-INF │ ├── lib │ │ └── mysql-connector-java-8.0.22.jar │ └── web.xml ├── about.jsp ├── addChangeAddress.jsp ├── addChangeAddressAction.jsp ├── addToCartAction.jsp ├── addressPaymentForOrder.jsp ├── addressPaymentForOrderAction.jsp ├── admin │ ├── addNewProduct.jsp │ ├── addNewProductAction.jsp │ ├── adminHeader.jsp │ ├── adminHome.jsp │ ├── allProductEditProduct.jsp │ ├── cancelOrders.jsp │ ├── cancelOrdersAction.jsp │ ├── deliveredOrders.jsp │ ├── deliveredOrdersAction.jsp │ ├── editProduct.jsp │ ├── editProductAction.jsp │ ├── messagesReceived.jsp │ └── ordersReceived.jsp ├── bill.jsp ├── changeDetails.jsp ├── changeDetailsHeader.jsp ├── changeMobileNumber.jsp ├── changeMobileNumberAction.jsp ├── changePassword.jsp ├── changePasswordAction.jsp ├── changeSecurityQuestion.jsp ├── changeSecurityQuestionAction.jsp ├── continueShopping.jsp ├── css │ ├── addNewProduct-style.css │ ├── addressPaymentForOrder-style.css │ ├── bill.css │ ├── changeDetails.css │ ├── home-style.css │ ├── messageUs.css │ ├── ordersReceived-style.css │ └── signup-style.css ├── dsfsdv.png ├── error.jsp ├── footer.jsp ├── forgotPassword.jsp ├── forgotPasswordAction.jsp ├── header.jsp ├── home.jsp ├── incDecQuantityAction.jsp ├── login.jsp ├── loginAction.jsp ├── logout.jsp ├── messageUs.jsp ├── messsageUsAction.jsp ├── myCart.jsp ├── myOrders.jsp ├── removeFromCart.jsp ├── searchHome.jsp ├── signup.jsp ├── signupAction.jsp └── table │ └── create_tables.jsp ├── mysql-connector-java-8.0.23 └── mysql-connector-java-8.0.23.jar ├── src └── project │ ├── ConnectionProvider.java │ ├── credentials.properties │ ├── dbCredentials.properties │ └── shoppingUtil.java └── vid_main.mp4 /.classpath: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adsinghnet/Online-Ecommerce-Website-Project-in-JSP/HEAD/.classpath -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adsinghnet/Online-Ecommerce-Website-Project-in-JSP/HEAD/.gitattributes -------------------------------------------------------------------------------- /.project: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adsinghnet/Online-Ecommerce-Website-Project-in-JSP/HEAD/.project -------------------------------------------------------------------------------- /.settings/.jsdtscope: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adsinghnet/Online-Ecommerce-Website-Project-in-JSP/HEAD/.settings/.jsdtscope -------------------------------------------------------------------------------- /.settings/org.eclipse.jdt.core.prefs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adsinghnet/Online-Ecommerce-Website-Project-in-JSP/HEAD/.settings/org.eclipse.jdt.core.prefs -------------------------------------------------------------------------------- /.settings/org.eclipse.wst.common.component: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adsinghnet/Online-Ecommerce-Website-Project-in-JSP/HEAD/.settings/org.eclipse.wst.common.component -------------------------------------------------------------------------------- /.settings/org.eclipse.wst.common.project.facet.core.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adsinghnet/Online-Ecommerce-Website-Project-in-JSP/HEAD/.settings/org.eclipse.wst.common.project.facet.core.xml -------------------------------------------------------------------------------- /.settings/org.eclipse.wst.jsdt.ui.superType.container: -------------------------------------------------------------------------------- 1 | org.eclipse.wst.jsdt.launching.baseBrowserLibrary -------------------------------------------------------------------------------- /.settings/org.eclipse.wst.jsdt.ui.superType.name: -------------------------------------------------------------------------------- 1 | Window -------------------------------------------------------------------------------- /Database/ospjsp.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adsinghnet/Online-Ecommerce-Website-Project-in-JSP/HEAD/Database/ospjsp.sql -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adsinghnet/Online-Ecommerce-Website-Project-in-JSP/HEAD/README.md -------------------------------------------------------------------------------- /WebContent/META-INF/MANIFEST.MF: -------------------------------------------------------------------------------- 1 | Manifest-Version: 1.0 2 | Class-Path: 3 | 4 | -------------------------------------------------------------------------------- /WebContent/WEB-INF/lib/mysql-connector-java-8.0.22.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adsinghnet/Online-Ecommerce-Website-Project-in-JSP/HEAD/WebContent/WEB-INF/lib/mysql-connector-java-8.0.22.jar -------------------------------------------------------------------------------- /WebContent/WEB-INF/web.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adsinghnet/Online-Ecommerce-Website-Project-in-JSP/HEAD/WebContent/WEB-INF/web.xml -------------------------------------------------------------------------------- /WebContent/about.jsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adsinghnet/Online-Ecommerce-Website-Project-in-JSP/HEAD/WebContent/about.jsp -------------------------------------------------------------------------------- /WebContent/addChangeAddress.jsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adsinghnet/Online-Ecommerce-Website-Project-in-JSP/HEAD/WebContent/addChangeAddress.jsp -------------------------------------------------------------------------------- /WebContent/addChangeAddressAction.jsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adsinghnet/Online-Ecommerce-Website-Project-in-JSP/HEAD/WebContent/addChangeAddressAction.jsp -------------------------------------------------------------------------------- /WebContent/addToCartAction.jsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adsinghnet/Online-Ecommerce-Website-Project-in-JSP/HEAD/WebContent/addToCartAction.jsp -------------------------------------------------------------------------------- /WebContent/addressPaymentForOrder.jsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adsinghnet/Online-Ecommerce-Website-Project-in-JSP/HEAD/WebContent/addressPaymentForOrder.jsp -------------------------------------------------------------------------------- /WebContent/addressPaymentForOrderAction.jsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adsinghnet/Online-Ecommerce-Website-Project-in-JSP/HEAD/WebContent/addressPaymentForOrderAction.jsp -------------------------------------------------------------------------------- /WebContent/admin/addNewProduct.jsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adsinghnet/Online-Ecommerce-Website-Project-in-JSP/HEAD/WebContent/admin/addNewProduct.jsp -------------------------------------------------------------------------------- /WebContent/admin/addNewProductAction.jsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adsinghnet/Online-Ecommerce-Website-Project-in-JSP/HEAD/WebContent/admin/addNewProductAction.jsp -------------------------------------------------------------------------------- /WebContent/admin/adminHeader.jsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adsinghnet/Online-Ecommerce-Website-Project-in-JSP/HEAD/WebContent/admin/adminHeader.jsp -------------------------------------------------------------------------------- /WebContent/admin/adminHome.jsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adsinghnet/Online-Ecommerce-Website-Project-in-JSP/HEAD/WebContent/admin/adminHome.jsp -------------------------------------------------------------------------------- /WebContent/admin/allProductEditProduct.jsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adsinghnet/Online-Ecommerce-Website-Project-in-JSP/HEAD/WebContent/admin/allProductEditProduct.jsp -------------------------------------------------------------------------------- /WebContent/admin/cancelOrders.jsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adsinghnet/Online-Ecommerce-Website-Project-in-JSP/HEAD/WebContent/admin/cancelOrders.jsp -------------------------------------------------------------------------------- /WebContent/admin/cancelOrdersAction.jsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adsinghnet/Online-Ecommerce-Website-Project-in-JSP/HEAD/WebContent/admin/cancelOrdersAction.jsp -------------------------------------------------------------------------------- /WebContent/admin/deliveredOrders.jsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adsinghnet/Online-Ecommerce-Website-Project-in-JSP/HEAD/WebContent/admin/deliveredOrders.jsp -------------------------------------------------------------------------------- /WebContent/admin/deliveredOrdersAction.jsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adsinghnet/Online-Ecommerce-Website-Project-in-JSP/HEAD/WebContent/admin/deliveredOrdersAction.jsp -------------------------------------------------------------------------------- /WebContent/admin/editProduct.jsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adsinghnet/Online-Ecommerce-Website-Project-in-JSP/HEAD/WebContent/admin/editProduct.jsp -------------------------------------------------------------------------------- /WebContent/admin/editProductAction.jsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adsinghnet/Online-Ecommerce-Website-Project-in-JSP/HEAD/WebContent/admin/editProductAction.jsp -------------------------------------------------------------------------------- /WebContent/admin/messagesReceived.jsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adsinghnet/Online-Ecommerce-Website-Project-in-JSP/HEAD/WebContent/admin/messagesReceived.jsp -------------------------------------------------------------------------------- /WebContent/admin/ordersReceived.jsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adsinghnet/Online-Ecommerce-Website-Project-in-JSP/HEAD/WebContent/admin/ordersReceived.jsp -------------------------------------------------------------------------------- /WebContent/bill.jsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adsinghnet/Online-Ecommerce-Website-Project-in-JSP/HEAD/WebContent/bill.jsp -------------------------------------------------------------------------------- /WebContent/changeDetails.jsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adsinghnet/Online-Ecommerce-Website-Project-in-JSP/HEAD/WebContent/changeDetails.jsp -------------------------------------------------------------------------------- /WebContent/changeDetailsHeader.jsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adsinghnet/Online-Ecommerce-Website-Project-in-JSP/HEAD/WebContent/changeDetailsHeader.jsp -------------------------------------------------------------------------------- /WebContent/changeMobileNumber.jsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adsinghnet/Online-Ecommerce-Website-Project-in-JSP/HEAD/WebContent/changeMobileNumber.jsp -------------------------------------------------------------------------------- /WebContent/changeMobileNumberAction.jsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adsinghnet/Online-Ecommerce-Website-Project-in-JSP/HEAD/WebContent/changeMobileNumberAction.jsp -------------------------------------------------------------------------------- /WebContent/changePassword.jsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adsinghnet/Online-Ecommerce-Website-Project-in-JSP/HEAD/WebContent/changePassword.jsp -------------------------------------------------------------------------------- /WebContent/changePasswordAction.jsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adsinghnet/Online-Ecommerce-Website-Project-in-JSP/HEAD/WebContent/changePasswordAction.jsp -------------------------------------------------------------------------------- /WebContent/changeSecurityQuestion.jsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adsinghnet/Online-Ecommerce-Website-Project-in-JSP/HEAD/WebContent/changeSecurityQuestion.jsp -------------------------------------------------------------------------------- /WebContent/changeSecurityQuestionAction.jsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adsinghnet/Online-Ecommerce-Website-Project-in-JSP/HEAD/WebContent/changeSecurityQuestionAction.jsp -------------------------------------------------------------------------------- /WebContent/continueShopping.jsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adsinghnet/Online-Ecommerce-Website-Project-in-JSP/HEAD/WebContent/continueShopping.jsp -------------------------------------------------------------------------------- /WebContent/css/addNewProduct-style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adsinghnet/Online-Ecommerce-Website-Project-in-JSP/HEAD/WebContent/css/addNewProduct-style.css -------------------------------------------------------------------------------- /WebContent/css/addressPaymentForOrder-style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adsinghnet/Online-Ecommerce-Website-Project-in-JSP/HEAD/WebContent/css/addressPaymentForOrder-style.css -------------------------------------------------------------------------------- /WebContent/css/bill.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adsinghnet/Online-Ecommerce-Website-Project-in-JSP/HEAD/WebContent/css/bill.css -------------------------------------------------------------------------------- /WebContent/css/changeDetails.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adsinghnet/Online-Ecommerce-Website-Project-in-JSP/HEAD/WebContent/css/changeDetails.css -------------------------------------------------------------------------------- /WebContent/css/home-style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adsinghnet/Online-Ecommerce-Website-Project-in-JSP/HEAD/WebContent/css/home-style.css -------------------------------------------------------------------------------- /WebContent/css/messageUs.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adsinghnet/Online-Ecommerce-Website-Project-in-JSP/HEAD/WebContent/css/messageUs.css -------------------------------------------------------------------------------- /WebContent/css/ordersReceived-style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adsinghnet/Online-Ecommerce-Website-Project-in-JSP/HEAD/WebContent/css/ordersReceived-style.css -------------------------------------------------------------------------------- /WebContent/css/signup-style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adsinghnet/Online-Ecommerce-Website-Project-in-JSP/HEAD/WebContent/css/signup-style.css -------------------------------------------------------------------------------- /WebContent/dsfsdv.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adsinghnet/Online-Ecommerce-Website-Project-in-JSP/HEAD/WebContent/dsfsdv.png -------------------------------------------------------------------------------- /WebContent/error.jsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adsinghnet/Online-Ecommerce-Website-Project-in-JSP/HEAD/WebContent/error.jsp -------------------------------------------------------------------------------- /WebContent/footer.jsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adsinghnet/Online-Ecommerce-Website-Project-in-JSP/HEAD/WebContent/footer.jsp -------------------------------------------------------------------------------- /WebContent/forgotPassword.jsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adsinghnet/Online-Ecommerce-Website-Project-in-JSP/HEAD/WebContent/forgotPassword.jsp -------------------------------------------------------------------------------- /WebContent/forgotPasswordAction.jsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adsinghnet/Online-Ecommerce-Website-Project-in-JSP/HEAD/WebContent/forgotPasswordAction.jsp -------------------------------------------------------------------------------- /WebContent/header.jsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adsinghnet/Online-Ecommerce-Website-Project-in-JSP/HEAD/WebContent/header.jsp -------------------------------------------------------------------------------- /WebContent/home.jsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adsinghnet/Online-Ecommerce-Website-Project-in-JSP/HEAD/WebContent/home.jsp -------------------------------------------------------------------------------- /WebContent/incDecQuantityAction.jsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adsinghnet/Online-Ecommerce-Website-Project-in-JSP/HEAD/WebContent/incDecQuantityAction.jsp -------------------------------------------------------------------------------- /WebContent/login.jsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adsinghnet/Online-Ecommerce-Website-Project-in-JSP/HEAD/WebContent/login.jsp -------------------------------------------------------------------------------- /WebContent/loginAction.jsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adsinghnet/Online-Ecommerce-Website-Project-in-JSP/HEAD/WebContent/loginAction.jsp -------------------------------------------------------------------------------- /WebContent/logout.jsp: -------------------------------------------------------------------------------- 1 | <% 2 | session.invalidate(); 3 | response.sendRedirect("login.jsp"); 4 | %> -------------------------------------------------------------------------------- /WebContent/messageUs.jsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adsinghnet/Online-Ecommerce-Website-Project-in-JSP/HEAD/WebContent/messageUs.jsp -------------------------------------------------------------------------------- /WebContent/messsageUsAction.jsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adsinghnet/Online-Ecommerce-Website-Project-in-JSP/HEAD/WebContent/messsageUsAction.jsp -------------------------------------------------------------------------------- /WebContent/myCart.jsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adsinghnet/Online-Ecommerce-Website-Project-in-JSP/HEAD/WebContent/myCart.jsp -------------------------------------------------------------------------------- /WebContent/myOrders.jsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adsinghnet/Online-Ecommerce-Website-Project-in-JSP/HEAD/WebContent/myOrders.jsp -------------------------------------------------------------------------------- /WebContent/removeFromCart.jsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adsinghnet/Online-Ecommerce-Website-Project-in-JSP/HEAD/WebContent/removeFromCart.jsp -------------------------------------------------------------------------------- /WebContent/searchHome.jsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adsinghnet/Online-Ecommerce-Website-Project-in-JSP/HEAD/WebContent/searchHome.jsp -------------------------------------------------------------------------------- /WebContent/signup.jsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adsinghnet/Online-Ecommerce-Website-Project-in-JSP/HEAD/WebContent/signup.jsp -------------------------------------------------------------------------------- /WebContent/signupAction.jsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adsinghnet/Online-Ecommerce-Website-Project-in-JSP/HEAD/WebContent/signupAction.jsp -------------------------------------------------------------------------------- /WebContent/table/create_tables.jsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adsinghnet/Online-Ecommerce-Website-Project-in-JSP/HEAD/WebContent/table/create_tables.jsp -------------------------------------------------------------------------------- /mysql-connector-java-8.0.23/mysql-connector-java-8.0.23.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adsinghnet/Online-Ecommerce-Website-Project-in-JSP/HEAD/mysql-connector-java-8.0.23/mysql-connector-java-8.0.23.jar -------------------------------------------------------------------------------- /src/project/ConnectionProvider.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adsinghnet/Online-Ecommerce-Website-Project-in-JSP/HEAD/src/project/ConnectionProvider.java -------------------------------------------------------------------------------- /src/project/credentials.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adsinghnet/Online-Ecommerce-Website-Project-in-JSP/HEAD/src/project/credentials.properties -------------------------------------------------------------------------------- /src/project/dbCredentials.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adsinghnet/Online-Ecommerce-Website-Project-in-JSP/HEAD/src/project/dbCredentials.properties -------------------------------------------------------------------------------- /src/project/shoppingUtil.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adsinghnet/Online-Ecommerce-Website-Project-in-JSP/HEAD/src/project/shoppingUtil.java -------------------------------------------------------------------------------- /vid_main.mp4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adsinghnet/Online-Ecommerce-Website-Project-in-JSP/HEAD/vid_main.mp4 --------------------------------------------------------------------------------