diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml new file mode 100644 index 0000000..f94f46c --- /dev/null +++ b/.github/workflows/build.yml @@ -0,0 +1,36 @@ +name: SonarQube +on: + push: + branches: + - master + pull_request: + types: [opened, synchronize, reopened] +jobs: + build: + name: Build and analyze + runs-on: ubuntu-latest + steps: + - uses: actions/checkout@v4 + with: + fetch-depth: 0 # Shallow clones should be disabled for a better relevancy of analysis + - name: Set up JDK 17 + uses: actions/setup-java@v4 + with: + java-version: 17 + distribution: 'zulu' # Alternative distribution options are available. + - name: Cache SonarQube packages + uses: actions/cache@v4 + with: + path: ~/.sonar/cache + key: ${{ runner.os }}-sonar + restore-keys: ${{ runner.os }}-sonar + - name: Cache Maven packages + uses: actions/cache@v4 + with: + path: ~/.m2 + key: ${{ runner.os }}-m2-${{ hashFiles('**/pom.xml') }} + restore-keys: ${{ runner.os }}-m2 + - name: Build and analyze + env: + SONAR_TOKEN: ${{ secrets.SONAR_TOKEN }} + run: mvn -B verify org.sonarsource.scanner.maven:sonar-maven-plugin:sonar -Dsonar.projectKey=InfoMarcy_EcommerceApp \ No newline at end of file diff --git a/EcommerceApp/.gitignore b/.gitignore similarity index 100% rename from EcommerceApp/.gitignore rename to .gitignore diff --git a/EcommerceApp/.settings/.jsdtscope b/.settings/.jsdtscope similarity index 100% rename from EcommerceApp/.settings/.jsdtscope rename to .settings/.jsdtscope diff --git a/.settings/org.eclipse.jdt.apt.core.prefs b/.settings/org.eclipse.jdt.apt.core.prefs new file mode 100644 index 0000000..d4313d4 --- /dev/null +++ b/.settings/org.eclipse.jdt.apt.core.prefs @@ -0,0 +1,2 @@ +eclipse.preferences.version=1 +org.eclipse.jdt.apt.aptEnabled=false diff --git a/EcommerceApp/.settings/org.eclipse.jdt.core.prefs b/.settings/org.eclipse.jdt.core.prefs similarity index 69% rename from EcommerceApp/.settings/org.eclipse.jdt.core.prefs rename to .settings/org.eclipse.jdt.core.prefs index d0e943e..fa50df0 100644 --- a/EcommerceApp/.settings/org.eclipse.jdt.core.prefs +++ b/.settings/org.eclipse.jdt.core.prefs @@ -1,11 +1,12 @@ eclipse.preferences.version=1 org.eclipse.jdt.core.compiler.codegen.inlineJsrBytecode=enabled -org.eclipse.jdt.core.compiler.codegen.targetPlatform=1.5 -org.eclipse.jdt.core.compiler.compliance=1.5 +org.eclipse.jdt.core.compiler.codegen.targetPlatform=1.8 +org.eclipse.jdt.core.compiler.compliance=1.8 org.eclipse.jdt.core.compiler.problem.assertIdentifier=error org.eclipse.jdt.core.compiler.problem.enablePreviewFeatures=disabled org.eclipse.jdt.core.compiler.problem.enumIdentifier=error org.eclipse.jdt.core.compiler.problem.forbiddenReference=warning org.eclipse.jdt.core.compiler.problem.reportPreviewFeatures=ignore +org.eclipse.jdt.core.compiler.processAnnotations=disabled org.eclipse.jdt.core.compiler.release=disabled -org.eclipse.jdt.core.compiler.source=1.5 +org.eclipse.jdt.core.compiler.source=1.8 diff --git a/EcommerceApp/.settings/org.eclipse.ltk.core.refactoring.prefs b/.settings/org.eclipse.ltk.core.refactoring.prefs similarity index 100% rename from EcommerceApp/.settings/org.eclipse.ltk.core.refactoring.prefs rename to .settings/org.eclipse.ltk.core.refactoring.prefs diff --git a/EcommerceApp/.settings/org.eclipse.m2e.core.prefs b/.settings/org.eclipse.m2e.core.prefs similarity index 100% rename from EcommerceApp/.settings/org.eclipse.m2e.core.prefs rename to .settings/org.eclipse.m2e.core.prefs diff --git a/EcommerceApp/.settings/org.eclipse.wst.common.component b/.settings/org.eclipse.wst.common.component similarity index 100% rename from EcommerceApp/.settings/org.eclipse.wst.common.component rename to .settings/org.eclipse.wst.common.component diff --git a/EcommerceApp/.settings/org.eclipse.wst.common.project.facet.core.xml b/.settings/org.eclipse.wst.common.project.facet.core.xml similarity index 100% rename from EcommerceApp/.settings/org.eclipse.wst.common.project.facet.core.xml rename to .settings/org.eclipse.wst.common.project.facet.core.xml diff --git a/EcommerceApp/.settings/org.eclipse.wst.jsdt.ui.superType.container b/.settings/org.eclipse.wst.jsdt.ui.superType.container similarity index 100% rename from EcommerceApp/.settings/org.eclipse.wst.jsdt.ui.superType.container rename to .settings/org.eclipse.wst.jsdt.ui.superType.container diff --git a/EcommerceApp/.settings/org.eclipse.wst.jsdt.ui.superType.name b/.settings/org.eclipse.wst.jsdt.ui.superType.name similarity index 100% rename from EcommerceApp/.settings/org.eclipse.wst.jsdt.ui.superType.name rename to .settings/org.eclipse.wst.jsdt.ui.superType.name diff --git a/EcommerceApp/.settings/org.eclipse.wst.validation.prefs b/.settings/org.eclipse.wst.validation.prefs similarity index 100% rename from EcommerceApp/.settings/org.eclipse.wst.validation.prefs rename to .settings/org.eclipse.wst.validation.prefs diff --git a/.vscode/settings.json b/.vscode/settings.json new file mode 100644 index 0000000..c5f3f6b --- /dev/null +++ b/.vscode/settings.json @@ -0,0 +1,3 @@ +{ + "java.configuration.updateBuildConfiguration": "interactive" +} \ No newline at end of file diff --git a/a1.png b/a1.png deleted file mode 100644 index f778719..0000000 Binary files a/a1.png and /dev/null differ diff --git a/a1ii.png b/a1ii.png deleted file mode 100644 index c01232e..0000000 Binary files a/a1ii.png and /dev/null differ diff --git a/a2.png b/a2.png deleted file mode 100644 index bf9f574..0000000 Binary files a/a2.png and /dev/null differ diff --git a/a3.png b/a3.png deleted file mode 100644 index 1d01778..0000000 Binary files a/a3.png and /dev/null differ diff --git a/a4.png b/a4.png deleted file mode 100644 index 0b8667f..0000000 Binary files a/a4.png and /dev/null differ diff --git a/a5.png b/a5.png deleted file mode 100644 index 429f08c..0000000 Binary files a/a5.png and /dev/null differ diff --git a/a6.png b/a6.png deleted file mode 100644 index d8f913f..0000000 Binary files a/a6.png and /dev/null differ diff --git a/a7.png b/a7.png deleted file mode 100644 index e8cc255..0000000 Binary files a/a7.png and /dev/null differ diff --git a/a8.png b/a8.png deleted file mode 100644 index 67a86d4..0000000 Binary files a/a8.png and /dev/null differ diff --git a/a9.png b/a9.png deleted file mode 100644 index 60bee60..0000000 Binary files a/a9.png and /dev/null differ diff --git a/EcommerceApp/mydatabase.db b/mydatabase.db similarity index 100% rename from EcommerceApp/mydatabase.db rename to mydatabase.db diff --git a/EcommerceApp/pom.xml b/pom.xml similarity index 96% rename from EcommerceApp/pom.xml rename to pom.xml index 6d3cbca..964adc4 100644 --- a/EcommerceApp/pom.xml +++ b/pom.xml @@ -7,6 +7,9 @@ 0.0.1-SNAPSHOT EcommerceApp Maven Webapp http://maven.apache.org + + infomarcy + diff --git a/EcommerceApp/src/main/java/com/conn/DBConnect.java b/src/main/java/com/conn/DBConnect.java similarity index 100% rename from EcommerceApp/src/main/java/com/conn/DBConnect.java rename to src/main/java/com/conn/DBConnect.java diff --git a/EcommerceApp/src/main/java/com/createtable.java b/src/main/java/com/createtable.java similarity index 100% rename from EcommerceApp/src/main/java/com/createtable.java rename to src/main/java/com/createtable.java diff --git a/EcommerceApp/src/main/java/com/dao/DAO.java b/src/main/java/com/dao/DAO.java similarity index 99% rename from EcommerceApp/src/main/java/com/dao/DAO.java rename to src/main/java/com/dao/DAO.java index 7b982a8..edd8b7c 100644 --- a/EcommerceApp/src/main/java/com/dao/DAO.java +++ b/src/main/java/com/dao/DAO.java @@ -11,13 +11,9 @@ import org.apache.commons.fileupload.FileItem; import org.apache.commons.fileupload.disk.DiskFileItemFactory; import org.apache.commons.fileupload.servlet.ServletFileUpload; - - import com.entity.category; import com.entity.customer; import com.utility.MyUtilities; -import com.entity.Product; -import com.entity.customer; import com.entity.brand; public class DAO { diff --git a/EcommerceApp/src/main/java/com/dao/DAO2.java b/src/main/java/com/dao/DAO2.java similarity index 95% rename from EcommerceApp/src/main/java/com/dao/DAO2.java rename to src/main/java/com/dao/DAO2.java index 87b48fa..6640078 100644 --- a/EcommerceApp/src/main/java/com/dao/DAO2.java +++ b/src/main/java/com/dao/DAO2.java @@ -5,23 +5,11 @@ import java.sql.ResultSet; import java.util.ArrayList; import java.util.List; -import java.util.jar.Attributes.Name; - -import javax.servlet.http.Cookie; -import javax.servlet.http.HttpServletRequest; - -import org.apache.commons.fileupload.FileItem; -import org.apache.commons.fileupload.disk.DiskFileItemFactory; -import org.apache.commons.fileupload.servlet.ServletFileUpload; - -import com.entity.Product; import com.entity.cart; import com.entity.customer; -import com.entity.order_details; import com.entity.orders; import com.entity.usermaster; import com.entity.viewlist; -import com.utility.MyUtilities; diff --git a/EcommerceApp/src/main/java/com/dao/DAO3.java b/src/main/java/com/dao/DAO3.java similarity index 94% rename from EcommerceApp/src/main/java/com/dao/DAO3.java rename to src/main/java/com/dao/DAO3.java index 251dcc0..514cc5b 100644 --- a/EcommerceApp/src/main/java/com/dao/DAO3.java +++ b/src/main/java/com/dao/DAO3.java @@ -5,27 +5,13 @@ import java.sql.ResultSet; import java.util.ArrayList; import java.util.List; -import java.util.jar.Attributes.Name; - -import javax.servlet.http.Cookie; -import javax.servlet.http.HttpServletRequest; - -import org.apache.commons.fileupload.FileItem; -import org.apache.commons.fileupload.disk.DiskFileItemFactory; -import org.apache.commons.fileupload.servlet.ServletFileUpload; - -import com.entity.Product; import com.entity.cart; -import com.entity.customer; import com.entity.laptop; import com.entity.mobile; import com.entity.orders; import com.entity.order_details; import com.entity.tv; -import com.entity.usermaster; -import com.entity.viewlist; import com.entity.watch; -import com.utility.MyUtilities; diff --git a/EcommerceApp/src/main/java/com/dao/DAO4.java b/src/main/java/com/dao/DAO4.java similarity index 100% rename from EcommerceApp/src/main/java/com/dao/DAO4.java rename to src/main/java/com/dao/DAO4.java diff --git a/EcommerceApp/src/main/java/com/dao/DAO5.java b/src/main/java/com/dao/DAO5.java similarity index 100% rename from EcommerceApp/src/main/java/com/dao/DAO5.java rename to src/main/java/com/dao/DAO5.java diff --git a/EcommerceApp/src/main/java/com/entity/Product.java b/src/main/java/com/entity/Product.java similarity index 100% rename from EcommerceApp/src/main/java/com/entity/Product.java rename to src/main/java/com/entity/Product.java diff --git a/EcommerceApp/src/main/java/com/entity/brand.java b/src/main/java/com/entity/brand.java similarity index 100% rename from EcommerceApp/src/main/java/com/entity/brand.java rename to src/main/java/com/entity/brand.java diff --git a/EcommerceApp/src/main/java/com/entity/cart.java b/src/main/java/com/entity/cart.java similarity index 100% rename from EcommerceApp/src/main/java/com/entity/cart.java rename to src/main/java/com/entity/cart.java diff --git a/EcommerceApp/src/main/java/com/entity/category.java b/src/main/java/com/entity/category.java similarity index 100% rename from EcommerceApp/src/main/java/com/entity/category.java rename to src/main/java/com/entity/category.java diff --git a/EcommerceApp/src/main/java/com/entity/contactus.java b/src/main/java/com/entity/contactus.java similarity index 100% rename from EcommerceApp/src/main/java/com/entity/contactus.java rename to src/main/java/com/entity/contactus.java diff --git a/EcommerceApp/src/main/java/com/entity/customer.java b/src/main/java/com/entity/customer.java similarity index 100% rename from EcommerceApp/src/main/java/com/entity/customer.java rename to src/main/java/com/entity/customer.java diff --git a/EcommerceApp/src/main/java/com/entity/laptop.java b/src/main/java/com/entity/laptop.java similarity index 100% rename from EcommerceApp/src/main/java/com/entity/laptop.java rename to src/main/java/com/entity/laptop.java diff --git a/EcommerceApp/src/main/java/com/entity/mobile.java b/src/main/java/com/entity/mobile.java similarity index 100% rename from EcommerceApp/src/main/java/com/entity/mobile.java rename to src/main/java/com/entity/mobile.java diff --git a/EcommerceApp/src/main/java/com/entity/order_details.java b/src/main/java/com/entity/order_details.java similarity index 100% rename from EcommerceApp/src/main/java/com/entity/order_details.java rename to src/main/java/com/entity/order_details.java diff --git a/EcommerceApp/src/main/java/com/entity/orders.java b/src/main/java/com/entity/orders.java similarity index 100% rename from EcommerceApp/src/main/java/com/entity/orders.java rename to src/main/java/com/entity/orders.java diff --git a/EcommerceApp/src/main/java/com/entity/tv.java b/src/main/java/com/entity/tv.java similarity index 100% rename from EcommerceApp/src/main/java/com/entity/tv.java rename to src/main/java/com/entity/tv.java diff --git a/EcommerceApp/src/main/java/com/entity/usermaster.java b/src/main/java/com/entity/usermaster.java similarity index 100% rename from EcommerceApp/src/main/java/com/entity/usermaster.java rename to src/main/java/com/entity/usermaster.java diff --git a/EcommerceApp/src/main/java/com/entity/viewlist.java b/src/main/java/com/entity/viewlist.java similarity index 100% rename from EcommerceApp/src/main/java/com/entity/viewlist.java rename to src/main/java/com/entity/viewlist.java diff --git a/EcommerceApp/src/main/java/com/entity/watch.java b/src/main/java/com/entity/watch.java similarity index 100% rename from EcommerceApp/src/main/java/com/entity/watch.java rename to src/main/java/com/entity/watch.java diff --git a/EcommerceApp/src/main/java/com/servlet/ShippingAddress2.java b/src/main/java/com/servlet/ShippingAddress2.java similarity index 100% rename from EcommerceApp/src/main/java/com/servlet/ShippingAddress2.java rename to src/main/java/com/servlet/ShippingAddress2.java diff --git a/EcommerceApp/src/main/java/com/servlet/addContactus.java b/src/main/java/com/servlet/addContactus.java similarity index 100% rename from EcommerceApp/src/main/java/com/servlet/addContactus.java rename to src/main/java/com/servlet/addContactus.java diff --git a/EcommerceApp/src/main/java/com/servlet/addContactusc.java b/src/main/java/com/servlet/addContactusc.java similarity index 100% rename from EcommerceApp/src/main/java/com/servlet/addContactusc.java rename to src/main/java/com/servlet/addContactusc.java diff --git a/EcommerceApp/src/main/java/com/servlet/addcustomer.java b/src/main/java/com/servlet/addcustomer.java similarity index 100% rename from EcommerceApp/src/main/java/com/servlet/addcustomer.java rename to src/main/java/com/servlet/addcustomer.java diff --git a/EcommerceApp/src/main/java/com/servlet/addproduct.java b/src/main/java/com/servlet/addproduct.java similarity index 100% rename from EcommerceApp/src/main/java/com/servlet/addproduct.java rename to src/main/java/com/servlet/addproduct.java diff --git a/EcommerceApp/src/main/java/com/servlet/addtocart.java b/src/main/java/com/servlet/addtocart.java similarity index 100% rename from EcommerceApp/src/main/java/com/servlet/addtocart.java rename to src/main/java/com/servlet/addtocart.java diff --git a/EcommerceApp/src/main/java/com/servlet/addtocartnull.java b/src/main/java/com/servlet/addtocartnull.java similarity index 100% rename from EcommerceApp/src/main/java/com/servlet/addtocartnull.java rename to src/main/java/com/servlet/addtocartnull.java diff --git a/EcommerceApp/src/main/java/com/servlet/addtocartnulla.java b/src/main/java/com/servlet/addtocartnulla.java similarity index 100% rename from EcommerceApp/src/main/java/com/servlet/addtocartnulla.java rename to src/main/java/com/servlet/addtocartnulla.java diff --git a/EcommerceApp/src/main/java/com/servlet/checkadmin.java b/src/main/java/com/servlet/checkadmin.java similarity index 100% rename from EcommerceApp/src/main/java/com/servlet/checkadmin.java rename to src/main/java/com/servlet/checkadmin.java diff --git a/EcommerceApp/src/main/java/com/servlet/checkcustomer.java b/src/main/java/com/servlet/checkcustomer.java similarity index 100% rename from EcommerceApp/src/main/java/com/servlet/checkcustomer.java rename to src/main/java/com/servlet/checkcustomer.java diff --git a/EcommerceApp/src/main/java/com/servlet/deletecustomer.java b/src/main/java/com/servlet/deletecustomer.java similarity index 100% rename from EcommerceApp/src/main/java/com/servlet/deletecustomer.java rename to src/main/java/com/servlet/deletecustomer.java diff --git a/EcommerceApp/src/main/java/com/servlet/payprocess.java b/src/main/java/com/servlet/payprocess.java similarity index 100% rename from EcommerceApp/src/main/java/com/servlet/payprocess.java rename to src/main/java/com/servlet/payprocess.java diff --git a/EcommerceApp/src/main/java/com/servlet/remove_contactus.java b/src/main/java/com/servlet/remove_contactus.java similarity index 100% rename from EcommerceApp/src/main/java/com/servlet/remove_contactus.java rename to src/main/java/com/servlet/remove_contactus.java diff --git a/EcommerceApp/src/main/java/com/servlet/remove_orders.java b/src/main/java/com/servlet/remove_orders.java similarity index 100% rename from EcommerceApp/src/main/java/com/servlet/remove_orders.java rename to src/main/java/com/servlet/remove_orders.java diff --git a/EcommerceApp/src/main/java/com/servlet/removecart.java b/src/main/java/com/servlet/removecart.java similarity index 100% rename from EcommerceApp/src/main/java/com/servlet/removecart.java rename to src/main/java/com/servlet/removecart.java diff --git a/EcommerceApp/src/main/java/com/servlet/removecarta.java b/src/main/java/com/servlet/removecarta.java similarity index 100% rename from EcommerceApp/src/main/java/com/servlet/removecarta.java rename to src/main/java/com/servlet/removecarta.java diff --git a/EcommerceApp/src/main/java/com/servlet/removecartnull.java b/src/main/java/com/servlet/removecartnull.java similarity index 100% rename from EcommerceApp/src/main/java/com/servlet/removecartnull.java rename to src/main/java/com/servlet/removecartnull.java diff --git a/EcommerceApp/src/main/java/com/servlet/removecartnulla.java b/src/main/java/com/servlet/removecartnulla.java similarity index 100% rename from EcommerceApp/src/main/java/com/servlet/removecartnulla.java rename to src/main/java/com/servlet/removecartnulla.java diff --git a/EcommerceApp/src/main/java/com/servlet/removeorders.java b/src/main/java/com/servlet/removeorders.java similarity index 100% rename from EcommerceApp/src/main/java/com/servlet/removeorders.java rename to src/main/java/com/servlet/removeorders.java diff --git a/EcommerceApp/src/main/java/com/servlet/removetable_cart.java b/src/main/java/com/servlet/removetable_cart.java similarity index 100% rename from EcommerceApp/src/main/java/com/servlet/removetable_cart.java rename to src/main/java/com/servlet/removetable_cart.java diff --git a/EcommerceApp/src/main/java/com/servlet/removetable_order_details.java b/src/main/java/com/servlet/removetable_order_details.java similarity index 100% rename from EcommerceApp/src/main/java/com/servlet/removetable_order_details.java rename to src/main/java/com/servlet/removetable_order_details.java diff --git a/EcommerceApp/src/main/java/com/utility/MyUtilities.java b/src/main/java/com/utility/MyUtilities.java similarity index 100% rename from EcommerceApp/src/main/java/com/utility/MyUtilities.java rename to src/main/java/com/utility/MyUtilities.java diff --git a/EcommerceApp/src/main/webapp/Css/abc.css b/src/main/webapp/Css/abc.css similarity index 100% rename from EcommerceApp/src/main/webapp/Css/abc.css rename to src/main/webapp/Css/abc.css diff --git a/EcommerceApp/src/main/webapp/Css/cart.css b/src/main/webapp/Css/cart.css similarity index 100% rename from EcommerceApp/src/main/webapp/Css/cart.css rename to src/main/webapp/Css/cart.css diff --git a/EcommerceApp/src/main/webapp/Css/customizebutton.css b/src/main/webapp/Css/customizebutton.css similarity index 100% rename from EcommerceApp/src/main/webapp/Css/customizebutton.css rename to src/main/webapp/Css/customizebutton.css diff --git a/EcommerceApp/src/main/webapp/Css/font.css b/src/main/webapp/Css/font.css similarity index 100% rename from EcommerceApp/src/main/webapp/Css/font.css rename to src/main/webapp/Css/font.css diff --git a/EcommerceApp/src/main/webapp/Css/spin.css b/src/main/webapp/Css/spin.css similarity index 100% rename from EcommerceApp/src/main/webapp/Css/spin.css rename to src/main/webapp/Css/spin.css diff --git a/EcommerceApp/src/main/webapp/Css/w3.css b/src/main/webapp/Css/w3.css similarity index 100% rename from EcommerceApp/src/main/webapp/Css/w3.css rename to src/main/webapp/Css/w3.css diff --git a/EcommerceApp/src/main/webapp/Css/whitespace.css b/src/main/webapp/Css/whitespace.css similarity index 100% rename from EcommerceApp/src/main/webapp/Css/whitespace.css rename to src/main/webapp/Css/whitespace.css diff --git a/EcommerceApp/src/main/webapp/META-INF/MANIFEST.MF b/src/main/webapp/META-INF/MANIFEST.MF similarity index 100% rename from EcommerceApp/src/main/webapp/META-INF/MANIFEST.MF rename to src/main/webapp/META-INF/MANIFEST.MF diff --git a/EcommerceApp/src/main/webapp/ShippingAddress.jsp b/src/main/webapp/ShippingAddress.jsp similarity index 100% rename from EcommerceApp/src/main/webapp/ShippingAddress.jsp rename to src/main/webapp/ShippingAddress.jsp diff --git a/EcommerceApp/src/main/webapp/aboutus.jsp b/src/main/webapp/aboutus.jsp similarity index 100% rename from EcommerceApp/src/main/webapp/aboutus.jsp rename to src/main/webapp/aboutus.jsp diff --git a/EcommerceApp/src/main/webapp/aboutusa.jsp b/src/main/webapp/aboutusa.jsp similarity index 100% rename from EcommerceApp/src/main/webapp/aboutusa.jsp rename to src/main/webapp/aboutusa.jsp diff --git a/EcommerceApp/src/main/webapp/aboutusc.jsp b/src/main/webapp/aboutusc.jsp similarity index 100% rename from EcommerceApp/src/main/webapp/aboutusc.jsp rename to src/main/webapp/aboutusc.jsp diff --git a/EcommerceApp/src/main/webapp/addproduct.jsp b/src/main/webapp/addproduct.jsp similarity index 100% rename from EcommerceApp/src/main/webapp/addproduct.jsp rename to src/main/webapp/addproduct.jsp diff --git a/EcommerceApp/src/main/webapp/admin_navbar.jsp b/src/main/webapp/admin_navbar.jsp similarity index 100% rename from EcommerceApp/src/main/webapp/admin_navbar.jsp rename to src/main/webapp/admin_navbar.jsp diff --git a/EcommerceApp/src/main/webapp/adminhome.jsp b/src/main/webapp/adminhome.jsp similarity index 100% rename from EcommerceApp/src/main/webapp/adminhome.jsp rename to src/main/webapp/adminhome.jsp diff --git a/EcommerceApp/src/main/webapp/adminlogin.jsp b/src/main/webapp/adminlogin.jsp similarity index 100% rename from EcommerceApp/src/main/webapp/adminlogin.jsp rename to src/main/webapp/adminlogin.jsp diff --git a/EcommerceApp/src/main/webapp/cart.jsp b/src/main/webapp/cart.jsp similarity index 100% rename from EcommerceApp/src/main/webapp/cart.jsp rename to src/main/webapp/cart.jsp diff --git a/EcommerceApp/src/main/webapp/carta.jsp b/src/main/webapp/carta.jsp similarity index 100% rename from EcommerceApp/src/main/webapp/carta.jsp rename to src/main/webapp/carta.jsp diff --git a/EcommerceApp/src/main/webapp/cartnull.jsp b/src/main/webapp/cartnull.jsp similarity index 100% rename from EcommerceApp/src/main/webapp/cartnull.jsp rename to src/main/webapp/cartnull.jsp diff --git a/EcommerceApp/src/main/webapp/cartnulla.jsp b/src/main/webapp/cartnulla.jsp similarity index 100% rename from EcommerceApp/src/main/webapp/cartnulla.jsp rename to src/main/webapp/cartnulla.jsp diff --git a/EcommerceApp/src/main/webapp/cartnullqty.jsp b/src/main/webapp/cartnullqty.jsp similarity index 100% rename from EcommerceApp/src/main/webapp/cartnullqty.jsp rename to src/main/webapp/cartnullqty.jsp diff --git a/EcommerceApp/src/main/webapp/category.jsp b/src/main/webapp/category.jsp similarity index 100% rename from EcommerceApp/src/main/webapp/category.jsp rename to src/main/webapp/category.jsp diff --git a/EcommerceApp/src/main/webapp/categorya.jsp b/src/main/webapp/categorya.jsp similarity index 100% rename from EcommerceApp/src/main/webapp/categorya.jsp rename to src/main/webapp/categorya.jsp diff --git a/EcommerceApp/src/main/webapp/categoryc.jsp b/src/main/webapp/categoryc.jsp similarity index 100% rename from EcommerceApp/src/main/webapp/categoryc.jsp rename to src/main/webapp/categoryc.jsp diff --git a/EcommerceApp/src/main/webapp/confirmonline.jsp b/src/main/webapp/confirmonline.jsp similarity index 100% rename from EcommerceApp/src/main/webapp/confirmonline.jsp rename to src/main/webapp/confirmonline.jsp diff --git a/EcommerceApp/src/main/webapp/confirmpayment.jsp b/src/main/webapp/confirmpayment.jsp similarity index 100% rename from EcommerceApp/src/main/webapp/confirmpayment.jsp rename to src/main/webapp/confirmpayment.jsp diff --git a/EcommerceApp/src/main/webapp/contactus.jsp b/src/main/webapp/contactus.jsp similarity index 100% rename from EcommerceApp/src/main/webapp/contactus.jsp rename to src/main/webapp/contactus.jsp diff --git a/EcommerceApp/src/main/webapp/contactusc.jsp b/src/main/webapp/contactusc.jsp similarity index 100% rename from EcommerceApp/src/main/webapp/contactusc.jsp rename to src/main/webapp/contactusc.jsp diff --git a/EcommerceApp/src/main/webapp/cufail.jsp b/src/main/webapp/cufail.jsp similarity index 100% rename from EcommerceApp/src/main/webapp/cufail.jsp rename to src/main/webapp/cufail.jsp diff --git a/EcommerceApp/src/main/webapp/cufailc.jsp b/src/main/webapp/cufailc.jsp similarity index 100% rename from EcommerceApp/src/main/webapp/cufailc.jsp rename to src/main/webapp/cufailc.jsp diff --git a/EcommerceApp/src/main/webapp/cupass.jsp b/src/main/webapp/cupass.jsp similarity index 100% rename from EcommerceApp/src/main/webapp/cupass.jsp rename to src/main/webapp/cupass.jsp diff --git a/EcommerceApp/src/main/webapp/cupassc.jsp b/src/main/webapp/cupassc.jsp similarity index 100% rename from EcommerceApp/src/main/webapp/cupassc.jsp rename to src/main/webapp/cupassc.jsp diff --git a/EcommerceApp/src/main/webapp/customer_navbar.jsp b/src/main/webapp/customer_navbar.jsp similarity index 100% rename from EcommerceApp/src/main/webapp/customer_navbar.jsp rename to src/main/webapp/customer_navbar.jsp diff --git a/EcommerceApp/src/main/webapp/customer_reg.jsp b/src/main/webapp/customer_reg.jsp similarity index 100% rename from EcommerceApp/src/main/webapp/customer_reg.jsp rename to src/main/webapp/customer_reg.jsp diff --git a/EcommerceApp/src/main/webapp/customerhome.jsp b/src/main/webapp/customerhome.jsp similarity index 100% rename from EcommerceApp/src/main/webapp/customerhome.jsp rename to src/main/webapp/customerhome.jsp diff --git a/EcommerceApp/src/main/webapp/customerlogin.jsp b/src/main/webapp/customerlogin.jsp similarity index 100% rename from EcommerceApp/src/main/webapp/customerlogin.jsp rename to src/main/webapp/customerlogin.jsp diff --git a/EcommerceApp/src/main/webapp/fail.jsp b/src/main/webapp/fail.jsp similarity index 100% rename from EcommerceApp/src/main/webapp/fail.jsp rename to src/main/webapp/fail.jsp diff --git a/EcommerceApp/src/main/webapp/failc.jsp b/src/main/webapp/failc.jsp similarity index 100% rename from EcommerceApp/src/main/webapp/failc.jsp rename to src/main/webapp/failc.jsp diff --git a/EcommerceApp/src/main/webapp/footer.jsp b/src/main/webapp/footer.jsp similarity index 100% rename from EcommerceApp/src/main/webapp/footer.jsp rename to src/main/webapp/footer.jsp diff --git a/EcommerceApp/src/main/webapp/images/Acer Predator.jpg b/src/main/webapp/images/Acer Predator.jpg similarity index 100% rename from EcommerceApp/src/main/webapp/images/Acer Predator.jpg rename to src/main/webapp/images/Acer Predator.jpg diff --git a/EcommerceApp/src/main/webapp/images/Acer liquid.jpg b/src/main/webapp/images/Acer liquid.jpg similarity index 100% rename from EcommerceApp/src/main/webapp/images/Acer liquid.jpg rename to src/main/webapp/images/Acer liquid.jpg diff --git a/EcommerceApp/src/main/webapp/images/Galaxy z fold3.jpg b/src/main/webapp/images/Galaxy z fold3.jpg similarity index 100% rename from EcommerceApp/src/main/webapp/images/Galaxy z fold3.jpg rename to src/main/webapp/images/Galaxy z fold3.jpg diff --git a/EcommerceApp/src/main/webapp/images/Samsung galaxy s22.webp b/src/main/webapp/images/Samsung galaxy s22.webp similarity index 100% rename from EcommerceApp/src/main/webapp/images/Samsung galaxy s22.webp rename to src/main/webapp/images/Samsung galaxy s22.webp diff --git a/EcommerceApp/src/main/webapp/images/Samsung neo Qled.webp b/src/main/webapp/images/Samsung neo Qled.webp similarity index 100% rename from EcommerceApp/src/main/webapp/images/Samsung neo Qled.webp rename to src/main/webapp/images/Samsung neo Qled.webp diff --git a/EcommerceApp/src/main/webapp/images/Sony Vaio.jpg b/src/main/webapp/images/Sony Vaio.jpg similarity index 100% rename from EcommerceApp/src/main/webapp/images/Sony Vaio.jpg rename to src/main/webapp/images/Sony Vaio.jpg diff --git a/EcommerceApp/src/main/webapp/images/aboutus.webp b/src/main/webapp/images/aboutus.webp similarity index 100% rename from EcommerceApp/src/main/webapp/images/aboutus.webp rename to src/main/webapp/images/aboutus.webp diff --git a/EcommerceApp/src/main/webapp/images/aboutus2.jpg b/src/main/webapp/images/aboutus2.jpg similarity index 100% rename from EcommerceApp/src/main/webapp/images/aboutus2.jpg rename to src/main/webapp/images/aboutus2.jpg diff --git a/EcommerceApp/src/main/webapp/images/acer aspire7.jpg b/src/main/webapp/images/acer aspire7.jpg similarity index 100% rename from EcommerceApp/src/main/webapp/images/acer aspire7.jpg rename to src/main/webapp/images/acer aspire7.jpg diff --git a/EcommerceApp/src/main/webapp/images/acer series a7.jpg b/src/main/webapp/images/acer series a7.jpg similarity index 100% rename from EcommerceApp/src/main/webapp/images/acer series a7.jpg rename to src/main/webapp/images/acer series a7.jpg diff --git a/EcommerceApp/src/main/webapp/images/acerlaptop.jpg b/src/main/webapp/images/acerlaptop.jpg similarity index 100% rename from EcommerceApp/src/main/webapp/images/acerlaptop.jpg rename to src/main/webapp/images/acerlaptop.jpg diff --git a/EcommerceApp/src/main/webapp/images/adminimg.png b/src/main/webapp/images/adminimg.png similarity index 100% rename from EcommerceApp/src/main/webapp/images/adminimg.png rename to src/main/webapp/images/adminimg.png diff --git a/EcommerceApp/src/main/webapp/images/bootstrap.css b/src/main/webapp/images/bootstrap.css similarity index 100% rename from EcommerceApp/src/main/webapp/images/bootstrap.css rename to src/main/webapp/images/bootstrap.css diff --git a/EcommerceApp/src/main/webapp/images/cart.png b/src/main/webapp/images/cart.png similarity index 100% rename from EcommerceApp/src/main/webapp/images/cart.png rename to src/main/webapp/images/cart.png diff --git a/EcommerceApp/src/main/webapp/images/conimg.jpg b/src/main/webapp/images/conimg.jpg similarity index 100% rename from EcommerceApp/src/main/webapp/images/conimg.jpg rename to src/main/webapp/images/conimg.jpg diff --git a/EcommerceApp/src/main/webapp/images/delete.jpg b/src/main/webapp/images/delete.jpg similarity index 100% rename from EcommerceApp/src/main/webapp/images/delete.jpg rename to src/main/webapp/images/delete.jpg diff --git a/EcommerceApp/src/main/webapp/images/emptycart.png b/src/main/webapp/images/emptycart.png similarity index 100% rename from EcommerceApp/src/main/webapp/images/emptycart.png rename to src/main/webapp/images/emptycart.png diff --git a/EcommerceApp/src/main/webapp/images/galaxy watch.jpg b/src/main/webapp/images/galaxy watch.jpg similarity index 100% rename from EcommerceApp/src/main/webapp/images/galaxy watch.jpg rename to src/main/webapp/images/galaxy watch.jpg diff --git a/EcommerceApp/src/main/webapp/images/galaxy watch4.jpg b/src/main/webapp/images/galaxy watch4.jpg similarity index 100% rename from EcommerceApp/src/main/webapp/images/galaxy watch4.jpg rename to src/main/webapp/images/galaxy watch4.jpg diff --git a/EcommerceApp/src/main/webapp/images/galaxywatch.webp b/src/main/webapp/images/galaxywatch.webp similarity index 100% rename from EcommerceApp/src/main/webapp/images/galaxywatch.webp rename to src/main/webapp/images/galaxywatch.webp diff --git a/EcommerceApp/src/main/webapp/images/homelaptop.jpg b/src/main/webapp/images/homelaptop.jpg similarity index 100% rename from EcommerceApp/src/main/webapp/images/homelaptop.jpg rename to src/main/webapp/images/homelaptop.jpg diff --git a/EcommerceApp/src/main/webapp/images/homelaptop2.jpg b/src/main/webapp/images/homelaptop2.jpg similarity index 100% rename from EcommerceApp/src/main/webapp/images/homelaptop2.jpg rename to src/main/webapp/images/homelaptop2.jpg diff --git a/EcommerceApp/src/main/webapp/images/homemobile.jpg b/src/main/webapp/images/homemobile.jpg similarity index 100% rename from EcommerceApp/src/main/webapp/images/homemobile.jpg rename to src/main/webapp/images/homemobile.jpg diff --git a/EcommerceApp/src/main/webapp/images/homemobile2.jpg b/src/main/webapp/images/homemobile2.jpg similarity index 100% rename from EcommerceApp/src/main/webapp/images/homemobile2.jpg rename to src/main/webapp/images/homemobile2.jpg diff --git a/EcommerceApp/src/main/webapp/images/homepage.png b/src/main/webapp/images/homepage.png similarity index 100% rename from EcommerceApp/src/main/webapp/images/homepage.png rename to src/main/webapp/images/homepage.png diff --git a/EcommerceApp/src/main/webapp/images/hometv.jpg b/src/main/webapp/images/hometv.jpg similarity index 100% rename from EcommerceApp/src/main/webapp/images/hometv.jpg rename to src/main/webapp/images/hometv.jpg diff --git a/EcommerceApp/src/main/webapp/images/hometv2.jpg b/src/main/webapp/images/hometv2.jpg similarity index 100% rename from EcommerceApp/src/main/webapp/images/hometv2.jpg rename to src/main/webapp/images/hometv2.jpg diff --git a/EcommerceApp/src/main/webapp/images/homewatch.jpg b/src/main/webapp/images/homewatch.jpg similarity index 100% rename from EcommerceApp/src/main/webapp/images/homewatch.jpg rename to src/main/webapp/images/homewatch.jpg diff --git a/EcommerceApp/src/main/webapp/images/homewatch2.jpg b/src/main/webapp/images/homewatch2.jpg similarity index 100% rename from EcommerceApp/src/main/webapp/images/homewatch2.jpg rename to src/main/webapp/images/homewatch2.jpg diff --git a/EcommerceApp/src/main/webapp/images/laptop.png b/src/main/webapp/images/laptop.png similarity index 100% rename from EcommerceApp/src/main/webapp/images/laptop.png rename to src/main/webapp/images/laptop.png diff --git a/EcommerceApp/src/main/webapp/images/lenovo a850.jpg b/src/main/webapp/images/lenovo a850.jpg similarity index 100% rename from EcommerceApp/src/main/webapp/images/lenovo a850.jpg rename to src/main/webapp/images/lenovo a850.jpg diff --git a/EcommerceApp/src/main/webapp/images/lenovo ideapad.jpg b/src/main/webapp/images/lenovo ideapad.jpg similarity index 100% rename from EcommerceApp/src/main/webapp/images/lenovo ideapad.jpg rename to src/main/webapp/images/lenovo ideapad.jpg diff --git a/EcommerceApp/src/main/webapp/images/lenovo legion.jpg b/src/main/webapp/images/lenovo legion.jpg similarity index 100% rename from EcommerceApp/src/main/webapp/images/lenovo legion.jpg rename to src/main/webapp/images/lenovo legion.jpg diff --git a/EcommerceApp/src/main/webapp/images/lenovomobile.webp b/src/main/webapp/images/lenovomobile.webp similarity index 100% rename from EcommerceApp/src/main/webapp/images/lenovomobile.webp rename to src/main/webapp/images/lenovomobile.webp diff --git a/EcommerceApp/src/main/webapp/images/loginimg.png b/src/main/webapp/images/loginimg.png similarity index 100% rename from EcommerceApp/src/main/webapp/images/loginimg.png rename to src/main/webapp/images/loginimg.png diff --git a/EcommerceApp/src/main/webapp/images/mobile.png b/src/main/webapp/images/mobile.png similarity index 100% rename from EcommerceApp/src/main/webapp/images/mobile.png rename to src/main/webapp/images/mobile.png diff --git a/EcommerceApp/src/main/webapp/images/onida leo.jpg b/src/main/webapp/images/onida leo.jpg similarity index 100% rename from EcommerceApp/src/main/webapp/images/onida leo.jpg rename to src/main/webapp/images/onida leo.jpg diff --git a/EcommerceApp/src/main/webapp/images/onidatv.jpg b/src/main/webapp/images/onidatv.jpg similarity index 100% rename from EcommerceApp/src/main/webapp/images/onidatv.jpg rename to src/main/webapp/images/onidatv.jpg diff --git a/EcommerceApp/src/main/webapp/images/payimg.jpg b/src/main/webapp/images/payimg.jpg similarity index 100% rename from EcommerceApp/src/main/webapp/images/payimg.jpg rename to src/main/webapp/images/payimg.jpg diff --git a/EcommerceApp/src/main/webapp/images/paymethod.png b/src/main/webapp/images/paymethod.png similarity index 100% rename from EcommerceApp/src/main/webapp/images/paymethod.png rename to src/main/webapp/images/paymethod.png diff --git a/EcommerceApp/src/main/webapp/images/regimg.png b/src/main/webapp/images/regimg.png similarity index 100% rename from EcommerceApp/src/main/webapp/images/regimg.png rename to src/main/webapp/images/regimg.png diff --git a/EcommerceApp/src/main/webapp/images/samsung crystal.webp b/src/main/webapp/images/samsung crystal.webp similarity index 100% rename from EcommerceApp/src/main/webapp/images/samsung crystal.webp rename to src/main/webapp/images/samsung crystal.webp diff --git a/EcommerceApp/src/main/webapp/images/samsunglaptop.jpg b/src/main/webapp/images/samsunglaptop.jpg similarity index 100% rename from EcommerceApp/src/main/webapp/images/samsunglaptop.jpg rename to src/main/webapp/images/samsunglaptop.jpg diff --git a/EcommerceApp/src/main/webapp/images/shipimg.png b/src/main/webapp/images/shipimg.png similarity index 100% rename from EcommerceApp/src/main/webapp/images/shipimg.png rename to src/main/webapp/images/shipimg.png diff --git a/EcommerceApp/src/main/webapp/images/smart fit.jpg b/src/main/webapp/images/smart fit.jpg similarity index 100% rename from EcommerceApp/src/main/webapp/images/smart fit.jpg rename to src/main/webapp/images/smart fit.jpg diff --git a/EcommerceApp/src/main/webapp/images/sony kdl.jpg b/src/main/webapp/images/sony kdl.jpg similarity index 100% rename from EcommerceApp/src/main/webapp/images/sony kdl.jpg rename to src/main/webapp/images/sony kdl.jpg diff --git a/EcommerceApp/src/main/webapp/images/sony smart2.webp b/src/main/webapp/images/sony smart2.webp similarity index 100% rename from EcommerceApp/src/main/webapp/images/sony smart2.webp rename to src/main/webapp/images/sony smart2.webp diff --git a/EcommerceApp/src/main/webapp/images/sony xperia 1v.jpg b/src/main/webapp/images/sony xperia 1v.jpg similarity index 100% rename from EcommerceApp/src/main/webapp/images/sony xperia 1v.jpg rename to src/main/webapp/images/sony xperia 1v.jpg diff --git a/EcommerceApp/src/main/webapp/images/sonytv.jpg b/src/main/webapp/images/sonytv.jpg similarity index 100% rename from EcommerceApp/src/main/webapp/images/sonytv.jpg rename to src/main/webapp/images/sonytv.jpg diff --git a/EcommerceApp/src/main/webapp/images/sonywatch.webp b/src/main/webapp/images/sonywatch.webp similarity index 100% rename from EcommerceApp/src/main/webapp/images/sonywatch.webp rename to src/main/webapp/images/sonywatch.webp diff --git a/EcommerceApp/src/main/webapp/images/sonyxperiaz.png b/src/main/webapp/images/sonyxperiaz.png similarity index 100% rename from EcommerceApp/src/main/webapp/images/sonyxperiaz.png rename to src/main/webapp/images/sonyxperiaz.png diff --git a/EcommerceApp/src/main/webapp/images/tv.png b/src/main/webapp/images/tv.png similarity index 100% rename from EcommerceApp/src/main/webapp/images/tv.png rename to src/main/webapp/images/tv.png diff --git a/EcommerceApp/src/main/webapp/images/watch.png b/src/main/webapp/images/watch.png similarity index 100% rename from EcommerceApp/src/main/webapp/images/watch.png rename to src/main/webapp/images/watch.png diff --git a/EcommerceApp/src/main/webapp/index.jsp b/src/main/webapp/index.jsp similarity index 100% rename from EcommerceApp/src/main/webapp/index.jsp rename to src/main/webapp/index.jsp diff --git a/EcommerceApp/src/main/webapp/laptop.jsp b/src/main/webapp/laptop.jsp similarity index 100% rename from EcommerceApp/src/main/webapp/laptop.jsp rename to src/main/webapp/laptop.jsp diff --git a/EcommerceApp/src/main/webapp/laptopa.jsp b/src/main/webapp/laptopa.jsp similarity index 100% rename from EcommerceApp/src/main/webapp/laptopa.jsp rename to src/main/webapp/laptopa.jsp diff --git a/EcommerceApp/src/main/webapp/laptopc.jsp b/src/main/webapp/laptopc.jsp similarity index 100% rename from EcommerceApp/src/main/webapp/laptopc.jsp rename to src/main/webapp/laptopc.jsp diff --git a/EcommerceApp/src/main/webapp/managecustomers.jsp b/src/main/webapp/managecustomers.jsp similarity index 100% rename from EcommerceApp/src/main/webapp/managecustomers.jsp rename to src/main/webapp/managecustomers.jsp diff --git a/EcommerceApp/src/main/webapp/managetables.jsp b/src/main/webapp/managetables.jsp similarity index 100% rename from EcommerceApp/src/main/webapp/managetables.jsp rename to src/main/webapp/managetables.jsp diff --git a/EcommerceApp/src/main/webapp/mobile.jsp b/src/main/webapp/mobile.jsp similarity index 100% rename from EcommerceApp/src/main/webapp/mobile.jsp rename to src/main/webapp/mobile.jsp diff --git a/EcommerceApp/src/main/webapp/mobilea.jsp b/src/main/webapp/mobilea.jsp similarity index 100% rename from EcommerceApp/src/main/webapp/mobilea.jsp rename to src/main/webapp/mobilea.jsp diff --git a/EcommerceApp/src/main/webapp/mobilec.jsp b/src/main/webapp/mobilec.jsp similarity index 100% rename from EcommerceApp/src/main/webapp/mobilec.jsp rename to src/main/webapp/mobilec.jsp diff --git a/EcommerceApp/src/main/webapp/navbar.jsp b/src/main/webapp/navbar.jsp similarity index 100% rename from EcommerceApp/src/main/webapp/navbar.jsp rename to src/main/webapp/navbar.jsp diff --git a/EcommerceApp/src/main/webapp/orderdetails.jsp b/src/main/webapp/orderdetails.jsp similarity index 100% rename from EcommerceApp/src/main/webapp/orderdetails.jsp rename to src/main/webapp/orderdetails.jsp diff --git a/EcommerceApp/src/main/webapp/orders.jsp b/src/main/webapp/orders.jsp similarity index 100% rename from EcommerceApp/src/main/webapp/orders.jsp rename to src/main/webapp/orders.jsp diff --git a/EcommerceApp/src/main/webapp/passc.jsp b/src/main/webapp/passc.jsp similarity index 100% rename from EcommerceApp/src/main/webapp/passc.jsp rename to src/main/webapp/passc.jsp diff --git a/EcommerceApp/src/main/webapp/paymentfail.jsp b/src/main/webapp/paymentfail.jsp similarity index 100% rename from EcommerceApp/src/main/webapp/paymentfail.jsp rename to src/main/webapp/paymentfail.jsp diff --git a/EcommerceApp/src/main/webapp/selecteditem.jsp b/src/main/webapp/selecteditem.jsp similarity index 100% rename from EcommerceApp/src/main/webapp/selecteditem.jsp rename to src/main/webapp/selecteditem.jsp diff --git a/EcommerceApp/src/main/webapp/selecteditema.jsp b/src/main/webapp/selecteditema.jsp similarity index 100% rename from EcommerceApp/src/main/webapp/selecteditema.jsp rename to src/main/webapp/selecteditema.jsp diff --git a/EcommerceApp/src/main/webapp/selecteditemc.jsp b/src/main/webapp/selecteditemc.jsp similarity index 100% rename from EcommerceApp/src/main/webapp/selecteditemc.jsp rename to src/main/webapp/selecteditemc.jsp diff --git a/EcommerceApp/src/main/webapp/table_cart.jsp b/src/main/webapp/table_cart.jsp similarity index 100% rename from EcommerceApp/src/main/webapp/table_cart.jsp rename to src/main/webapp/table_cart.jsp diff --git a/EcommerceApp/src/main/webapp/table_contactus.jsp b/src/main/webapp/table_contactus.jsp similarity index 100% rename from EcommerceApp/src/main/webapp/table_contactus.jsp rename to src/main/webapp/table_contactus.jsp diff --git a/EcommerceApp/src/main/webapp/table_order_details.jsp b/src/main/webapp/table_order_details.jsp similarity index 100% rename from EcommerceApp/src/main/webapp/table_order_details.jsp rename to src/main/webapp/table_order_details.jsp diff --git a/EcommerceApp/src/main/webapp/table_orders.jsp b/src/main/webapp/table_orders.jsp similarity index 100% rename from EcommerceApp/src/main/webapp/table_orders.jsp rename to src/main/webapp/table_orders.jsp diff --git a/EcommerceApp/src/main/webapp/tv.jsp b/src/main/webapp/tv.jsp similarity index 100% rename from EcommerceApp/src/main/webapp/tv.jsp rename to src/main/webapp/tv.jsp diff --git a/EcommerceApp/src/main/webapp/tva.jsp b/src/main/webapp/tva.jsp similarity index 100% rename from EcommerceApp/src/main/webapp/tva.jsp rename to src/main/webapp/tva.jsp diff --git a/EcommerceApp/src/main/webapp/tvc.jsp b/src/main/webapp/tvc.jsp similarity index 100% rename from EcommerceApp/src/main/webapp/tvc.jsp rename to src/main/webapp/tvc.jsp diff --git a/EcommerceApp/src/main/webapp/validatelogina.jsp b/src/main/webapp/validatelogina.jsp similarity index 100% rename from EcommerceApp/src/main/webapp/validatelogina.jsp rename to src/main/webapp/validatelogina.jsp diff --git a/EcommerceApp/src/main/webapp/validateloginc.jsp b/src/main/webapp/validateloginc.jsp similarity index 100% rename from EcommerceApp/src/main/webapp/validateloginc.jsp rename to src/main/webapp/validateloginc.jsp diff --git a/EcommerceApp/src/main/webapp/viewproduct.jsp b/src/main/webapp/viewproduct.jsp similarity index 100% rename from EcommerceApp/src/main/webapp/viewproduct.jsp rename to src/main/webapp/viewproduct.jsp diff --git a/EcommerceApp/src/main/webapp/viewproducta.jsp b/src/main/webapp/viewproducta.jsp similarity index 100% rename from EcommerceApp/src/main/webapp/viewproducta.jsp rename to src/main/webapp/viewproducta.jsp diff --git a/EcommerceApp/src/main/webapp/viewproductc.jsp b/src/main/webapp/viewproductc.jsp similarity index 100% rename from EcommerceApp/src/main/webapp/viewproductc.jsp rename to src/main/webapp/viewproductc.jsp diff --git a/EcommerceApp/src/main/webapp/watch.jsp b/src/main/webapp/watch.jsp similarity index 100% rename from EcommerceApp/src/main/webapp/watch.jsp rename to src/main/webapp/watch.jsp diff --git a/EcommerceApp/src/main/webapp/watcha.jsp b/src/main/webapp/watcha.jsp similarity index 100% rename from EcommerceApp/src/main/webapp/watcha.jsp rename to src/main/webapp/watcha.jsp diff --git a/EcommerceApp/src/main/webapp/watchc.jsp b/src/main/webapp/watchc.jsp similarity index 100% rename from EcommerceApp/src/main/webapp/watchc.jsp rename to src/main/webapp/watchc.jsp diff --git a/EcommerceApp/src/main/webapp/z1.jsp b/src/main/webapp/z1.jsp similarity index 100% rename from EcommerceApp/src/main/webapp/z1.jsp rename to src/main/webapp/z1.jsp diff --git a/EcommerceApp/src/main/webapp/z2.jsp b/src/main/webapp/z2.jsp similarity index 100% rename from EcommerceApp/src/main/webapp/z2.jsp rename to src/main/webapp/z2.jsp