├── .github ├── dependabot.yml └── workflows │ └── maven.yml ├── .gitignore ├── .mvn └── wrapper │ ├── maven-wrapper.jar │ └── maven-wrapper.properties ├── .vscode └── launch.json ├── Demo Video ├── Admin.mp4 └── E-Commerce.mp4 ├── E-Commerce ScreenSort.pdf ├── README.md ├── adminportal ├── mvnw ├── mvnw.cmd ├── pom.xml ├── src │ ├── main │ │ ├── java │ │ │ └── com │ │ │ │ └── adminportal │ │ │ │ ├── AdminportalApplication.java │ │ │ │ ├── config │ │ │ │ └── SecurityConfig.java │ │ │ │ ├── controller │ │ │ │ ├── BookController.java │ │ │ │ ├── HomeController.java │ │ │ │ └── ResourceController.java │ │ │ │ ├── domain │ │ │ │ ├── Book.java │ │ │ │ ├── User.java │ │ │ │ └── security │ │ │ │ │ ├── Authority.java │ │ │ │ │ ├── PasswordResetToken.java │ │ │ │ │ ├── Role.java │ │ │ │ │ └── UserRole.java │ │ │ │ ├── repository │ │ │ │ ├── BookRepository.java │ │ │ │ ├── RoleRepository.java │ │ │ │ └── UserRepository.java │ │ │ │ ├── service │ │ │ │ ├── BookService.java │ │ │ │ ├── UserService.java │ │ │ │ └── impl │ │ │ │ │ ├── BookServiceImpl.java │ │ │ │ │ ├── UserSecurityService.java │ │ │ │ │ └── UserServiceImpl.java │ │ │ │ └── utility │ │ │ │ └── SecurityUtility.java │ │ └── resources │ │ │ ├── application.properties │ │ │ ├── static │ │ │ ├── css │ │ │ │ ├── bootstrap-theme.min.css │ │ │ │ ├── bootstrap.min.css │ │ │ │ ├── non-responsive.css │ │ │ │ └── style.css │ │ │ ├── fonts │ │ │ │ ├── FontAwesome.otf │ │ │ │ ├── fontawesome-webfont.eot │ │ │ │ ├── fontawesome-webfont.svg │ │ │ │ ├── fontawesome-webfont.ttf │ │ │ │ ├── fontawesome-webfont.woff │ │ │ │ ├── fontawesome-webfont.woff2 │ │ │ │ ├── glyphicons-halflings-regular.eot │ │ │ │ ├── glyphicons-halflings-regular.svg │ │ │ │ ├── glyphicons-halflings-regular.ttf │ │ │ │ ├── glyphicons-halflings-regular.woff │ │ │ │ └── glyphicons-halflings-regular.woff2 │ │ │ ├── image │ │ │ │ ├── apple-touch-icon.png │ │ │ │ ├── book │ │ │ │ │ ├── 10.png │ │ │ │ │ ├── 11.png │ │ │ │ │ ├── 13.png │ │ │ │ │ ├── 152.png │ │ │ │ │ ├── 153.png │ │ │ │ │ ├── 17.png │ │ │ │ │ ├── 28.png │ │ │ │ │ ├── 31.png │ │ │ │ │ ├── 35.png │ │ │ │ │ ├── 4.png │ │ │ │ │ ├── 45.png │ │ │ │ │ ├── 46.png │ │ │ │ │ ├── 47.png │ │ │ │ │ ├── 48.png │ │ │ │ │ ├── 49.png │ │ │ │ │ ├── 5.png │ │ │ │ │ ├── 50.png │ │ │ │ │ ├── 51.png │ │ │ │ │ ├── 52.png │ │ │ │ │ ├── 53.png │ │ │ │ │ ├── 54.png │ │ │ │ │ ├── 6.png │ │ │ │ │ ├── 88.png │ │ │ │ │ ├── 89.png │ │ │ │ │ └── 90.png │ │ │ │ ├── faq.png │ │ │ │ ├── hours.png │ │ │ │ ├── img_avatar1.png │ │ │ │ ├── logo.png │ │ │ │ ├── mac.jpg │ │ │ │ ├── shelf.png │ │ │ │ └── wood.png │ │ │ └── js │ │ │ │ ├── bootstrap.min.js │ │ │ │ └── jquery.min.js │ │ │ └── templates │ │ │ ├── addBook.html │ │ │ ├── bookInfo.html │ │ │ ├── bookList.html │ │ │ ├── common │ │ │ └── header.html │ │ │ ├── home.html │ │ │ ├── login.html │ │ │ └── updateBook.html │ └── test │ │ └── java │ │ └── com │ │ └── adminportal │ │ └── AdminportalApplicationTests.java └── target │ ├── classes │ ├── META-INF │ │ ├── MANIFEST.MF │ │ └── maven │ │ │ └── com.adminportal │ │ │ └── adminportal │ │ │ ├── pom.properties │ │ │ └── pom.xml │ ├── application.properties │ └── com │ │ └── adminportal │ │ ├── AdminportalApplication.class │ │ └── domain │ │ ├── Book.class │ │ ├── User.class │ │ └── security │ │ ├── Authority.class │ │ ├── PasswordResetToken.class │ │ ├── Role.class │ │ └── UserRole.class │ └── test-classes │ └── com │ └── adminportal │ └── AdminportalApplicationTests.class ├── bin ├── .gitignore ├── .mvn │ └── wrapper │ │ ├── maven-wrapper.jar │ │ └── maven-wrapper.properties ├── mvnw ├── mvnw.cmd ├── pom.xml └── src │ ├── main │ ├── java │ │ └── com │ │ │ └── bookstore │ │ │ └── BookstoreApplication.class │ └── resources │ │ └── application.properties │ └── test │ └── java │ └── com │ └── bookstore │ └── BookstoreApplicationTests.class ├── mvnw ├── mvnw.cmd ├── pom.xml ├── screensort ├── ebook1.png ├── ebook10.png ├── ebook11.png ├── ebook12.png ├── ebook13.png ├── ebook14.png ├── ebook15.png ├── ebook16.png ├── ebook17.png ├── ebook18.png ├── ebook19.png ├── ebook2.png ├── ebook20.png ├── ebook21.png ├── ebook22.png ├── ebook23.png ├── ebook23copy.png ├── ebook24.png ├── ebook25.png ├── ebook26.png ├── ebook27.png ├── ebook28.png ├── ebook29.png ├── ebook3.png ├── ebook30.png ├── ebook31.png ├── ebook32.png ├── ebook33.png ├── ebook34.png ├── ebook35.png ├── ebook36.png ├── ebook37.png ├── ebook4.png ├── ebook5.png ├── ebook6.png ├── ebook7.png ├── ebook8.png └── ebook9.png └── src ├── main ├── java │ └── com │ │ └── eCommerce │ │ ├── ECommerceApplication.java │ │ ├── config │ │ └── SecurityConfig.java │ │ ├── controller │ │ ├── CheckoutController.java │ │ ├── HomeController.java │ │ ├── SearchController.java │ │ └── ShoppingCartController.java │ │ ├── domain │ │ ├── BillingAddress.java │ │ ├── Book.java │ │ ├── BookToCartItem.java │ │ ├── CartItem.java │ │ ├── Order.java │ │ ├── Payment.java │ │ ├── ShippingAddress.java │ │ ├── ShoppingCart.java │ │ ├── User.java │ │ ├── UserBilling.java │ │ ├── UserPayment.java │ │ ├── UserShipping.java │ │ └── security │ │ │ ├── Authority.java │ │ │ ├── PasswordResetToken.java │ │ │ ├── Role.java │ │ │ └── UserRole.java │ │ ├── repository │ │ ├── BookRepository.java │ │ ├── BookToCartItemRepository.java │ │ ├── CartItemRepository.java │ │ ├── OrderRepository.java │ │ ├── PasswordResetTokenRepository.java │ │ ├── RoleRepository.java │ │ ├── ShoppingCartRepository.java │ │ ├── UserPaymentRepository.java │ │ ├── UserRepository.java │ │ └── UserShippingRepository.java │ │ ├── service │ │ ├── BillingAddressService.java │ │ ├── BookService.java │ │ ├── CartItemService.java │ │ ├── OrderService.java │ │ ├── PaymentService.java │ │ ├── ShippingAddressService.java │ │ ├── ShoppingCartService.java │ │ ├── UserPaymentService.java │ │ ├── UserService.java │ │ ├── UserShippingService.java │ │ └── impl │ │ │ ├── BillingAddressServiceImpl.java │ │ │ ├── BookServiceImpl.java │ │ │ ├── CartItemServiceImpl.java │ │ │ ├── OrderServiceImpl.java │ │ │ ├── PaymentServiceImpl.java │ │ │ ├── ShippingAddressServiceImpl.java │ │ │ ├── ShoppingCartServiceImpl.java │ │ │ ├── UserPaymentServiceImpl.java │ │ │ ├── UserSecurityService.java │ │ │ ├── UserServiceImpl.java │ │ │ └── UserShippingServiceImpl.java │ │ └── utility │ │ ├── MailConstructor.java │ │ ├── SecurityUtility.java │ │ └── USConstants.java └── resources │ ├── application.properties │ ├── messages.properties │ ├── static │ ├── css │ │ ├── bootstrap-theme.min.css │ │ ├── bootstrap.min.css │ │ ├── dataTables.bootstrap.min.css │ │ ├── dataTables.jqueryui.min.css │ │ ├── font-awesome.min.css │ │ ├── jquery.dataTables.min.css │ │ ├── jquery.dataTables_themeroller.css │ │ ├── non-responsive.css │ │ └── style.css │ ├── fonts │ │ ├── FontAwesome.otf │ │ ├── fontawesome-webfont.eot │ │ ├── fontawesome-webfont.svg │ │ ├── fontawesome-webfont.ttf │ │ ├── fontawesome-webfont.woff │ │ ├── fontawesome-webfont.woff2 │ │ ├── glyphicons-halflings-regular.eot │ │ ├── glyphicons-halflings-regular.svg │ │ ├── glyphicons-halflings-regular.ttf │ │ ├── glyphicons-halflings-regular.woff │ │ └── glyphicons-halflings-regular.woff2 │ ├── image │ │ ├── bank.jpg │ │ ├── bgline.png │ │ ├── book1.png │ │ ├── book2.png │ │ ├── book3.png │ │ ├── book4.png │ │ ├── book5.png │ │ ├── book6.png │ │ ├── creditcard.png │ │ ├── ecommerce-dev.png │ │ ├── faq.png │ │ ├── foysal_2qy_1.ico │ │ ├── hours.png │ │ ├── library.png │ │ ├── library3.jpg │ │ ├── logo.png │ │ ├── logo2.png │ │ ├── macbook.jpg │ │ ├── me.jpg │ │ ├── programmingBook.png │ │ ├── shelf.png │ │ ├── web-dev.jpg │ │ └── wood.png │ └── js │ │ ├── bootstrap.min.js │ │ ├── dataTables.bootstrap.min.js │ │ ├── dataTables.jqueryui.min.js │ │ ├── dataTables.uikit.min.js │ │ ├── jquery.dataTables.min.js │ │ ├── jquery.min.js │ │ └── scripts.js │ └── templates │ ├── badRequestPage.html │ ├── bookDetail.html │ ├── bookshelf.html │ ├── checkout.html │ ├── common │ └── header.html │ ├── faq.html │ ├── index.html │ ├── myAccount.html │ ├── myProfile.html │ ├── orderConfirmationEmailTemplate.html │ ├── orderSubmittedPage.html │ └── shoppingCart.html └── test └── java └── com └── eCommerce └── ECommerceApplicationTests.java /.github/dependabot.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foysal-mahmud/E-BookShop----Spring-boot/HEAD/.github/dependabot.yml -------------------------------------------------------------------------------- /.github/workflows/maven.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foysal-mahmud/E-BookShop----Spring-boot/HEAD/.github/workflows/maven.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foysal-mahmud/E-BookShop----Spring-boot/HEAD/.gitignore -------------------------------------------------------------------------------- /.mvn/wrapper/maven-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foysal-mahmud/E-BookShop----Spring-boot/HEAD/.mvn/wrapper/maven-wrapper.jar -------------------------------------------------------------------------------- /.mvn/wrapper/maven-wrapper.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foysal-mahmud/E-BookShop----Spring-boot/HEAD/.mvn/wrapper/maven-wrapper.properties -------------------------------------------------------------------------------- /.vscode/launch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foysal-mahmud/E-BookShop----Spring-boot/HEAD/.vscode/launch.json -------------------------------------------------------------------------------- /Demo Video/Admin.mp4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foysal-mahmud/E-BookShop----Spring-boot/HEAD/Demo Video/Admin.mp4 -------------------------------------------------------------------------------- /Demo Video/E-Commerce.mp4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foysal-mahmud/E-BookShop----Spring-boot/HEAD/Demo Video/E-Commerce.mp4 -------------------------------------------------------------------------------- /E-Commerce ScreenSort.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foysal-mahmud/E-BookShop----Spring-boot/HEAD/E-Commerce ScreenSort.pdf -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foysal-mahmud/E-BookShop----Spring-boot/HEAD/README.md -------------------------------------------------------------------------------- /adminportal/mvnw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foysal-mahmud/E-BookShop----Spring-boot/HEAD/adminportal/mvnw -------------------------------------------------------------------------------- /adminportal/mvnw.cmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foysal-mahmud/E-BookShop----Spring-boot/HEAD/adminportal/mvnw.cmd -------------------------------------------------------------------------------- /adminportal/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foysal-mahmud/E-BookShop----Spring-boot/HEAD/adminportal/pom.xml -------------------------------------------------------------------------------- /adminportal/src/main/java/com/adminportal/AdminportalApplication.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foysal-mahmud/E-BookShop----Spring-boot/HEAD/adminportal/src/main/java/com/adminportal/AdminportalApplication.java -------------------------------------------------------------------------------- /adminportal/src/main/java/com/adminportal/config/SecurityConfig.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foysal-mahmud/E-BookShop----Spring-boot/HEAD/adminportal/src/main/java/com/adminportal/config/SecurityConfig.java -------------------------------------------------------------------------------- /adminportal/src/main/java/com/adminportal/controller/BookController.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foysal-mahmud/E-BookShop----Spring-boot/HEAD/adminportal/src/main/java/com/adminportal/controller/BookController.java -------------------------------------------------------------------------------- /adminportal/src/main/java/com/adminportal/controller/HomeController.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foysal-mahmud/E-BookShop----Spring-boot/HEAD/adminportal/src/main/java/com/adminportal/controller/HomeController.java -------------------------------------------------------------------------------- /adminportal/src/main/java/com/adminportal/controller/ResourceController.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foysal-mahmud/E-BookShop----Spring-boot/HEAD/adminportal/src/main/java/com/adminportal/controller/ResourceController.java -------------------------------------------------------------------------------- /adminportal/src/main/java/com/adminportal/domain/Book.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foysal-mahmud/E-BookShop----Spring-boot/HEAD/adminportal/src/main/java/com/adminportal/domain/Book.java -------------------------------------------------------------------------------- /adminportal/src/main/java/com/adminportal/domain/User.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foysal-mahmud/E-BookShop----Spring-boot/HEAD/adminportal/src/main/java/com/adminportal/domain/User.java -------------------------------------------------------------------------------- /adminportal/src/main/java/com/adminportal/domain/security/Authority.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foysal-mahmud/E-BookShop----Spring-boot/HEAD/adminportal/src/main/java/com/adminportal/domain/security/Authority.java -------------------------------------------------------------------------------- /adminportal/src/main/java/com/adminportal/domain/security/PasswordResetToken.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foysal-mahmud/E-BookShop----Spring-boot/HEAD/adminportal/src/main/java/com/adminportal/domain/security/PasswordResetToken.java -------------------------------------------------------------------------------- /adminportal/src/main/java/com/adminportal/domain/security/Role.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foysal-mahmud/E-BookShop----Spring-boot/HEAD/adminportal/src/main/java/com/adminportal/domain/security/Role.java -------------------------------------------------------------------------------- /adminportal/src/main/java/com/adminportal/domain/security/UserRole.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foysal-mahmud/E-BookShop----Spring-boot/HEAD/adminportal/src/main/java/com/adminportal/domain/security/UserRole.java -------------------------------------------------------------------------------- /adminportal/src/main/java/com/adminportal/repository/BookRepository.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foysal-mahmud/E-BookShop----Spring-boot/HEAD/adminportal/src/main/java/com/adminportal/repository/BookRepository.java -------------------------------------------------------------------------------- /adminportal/src/main/java/com/adminportal/repository/RoleRepository.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foysal-mahmud/E-BookShop----Spring-boot/HEAD/adminportal/src/main/java/com/adminportal/repository/RoleRepository.java -------------------------------------------------------------------------------- /adminportal/src/main/java/com/adminportal/repository/UserRepository.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foysal-mahmud/E-BookShop----Spring-boot/HEAD/adminportal/src/main/java/com/adminportal/repository/UserRepository.java -------------------------------------------------------------------------------- /adminportal/src/main/java/com/adminportal/service/BookService.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foysal-mahmud/E-BookShop----Spring-boot/HEAD/adminportal/src/main/java/com/adminportal/service/BookService.java -------------------------------------------------------------------------------- /adminportal/src/main/java/com/adminportal/service/UserService.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foysal-mahmud/E-BookShop----Spring-boot/HEAD/adminportal/src/main/java/com/adminportal/service/UserService.java -------------------------------------------------------------------------------- /adminportal/src/main/java/com/adminportal/service/impl/BookServiceImpl.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foysal-mahmud/E-BookShop----Spring-boot/HEAD/adminportal/src/main/java/com/adminportal/service/impl/BookServiceImpl.java -------------------------------------------------------------------------------- /adminportal/src/main/java/com/adminportal/service/impl/UserSecurityService.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foysal-mahmud/E-BookShop----Spring-boot/HEAD/adminportal/src/main/java/com/adminportal/service/impl/UserSecurityService.java -------------------------------------------------------------------------------- /adminportal/src/main/java/com/adminportal/service/impl/UserServiceImpl.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foysal-mahmud/E-BookShop----Spring-boot/HEAD/adminportal/src/main/java/com/adminportal/service/impl/UserServiceImpl.java -------------------------------------------------------------------------------- /adminportal/src/main/java/com/adminportal/utility/SecurityUtility.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foysal-mahmud/E-BookShop----Spring-boot/HEAD/adminportal/src/main/java/com/adminportal/utility/SecurityUtility.java -------------------------------------------------------------------------------- /adminportal/src/main/resources/application.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foysal-mahmud/E-BookShop----Spring-boot/HEAD/adminportal/src/main/resources/application.properties -------------------------------------------------------------------------------- /adminportal/src/main/resources/static/css/bootstrap-theme.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foysal-mahmud/E-BookShop----Spring-boot/HEAD/adminportal/src/main/resources/static/css/bootstrap-theme.min.css -------------------------------------------------------------------------------- /adminportal/src/main/resources/static/css/bootstrap.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foysal-mahmud/E-BookShop----Spring-boot/HEAD/adminportal/src/main/resources/static/css/bootstrap.min.css -------------------------------------------------------------------------------- /adminportal/src/main/resources/static/css/non-responsive.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foysal-mahmud/E-BookShop----Spring-boot/HEAD/adminportal/src/main/resources/static/css/non-responsive.css -------------------------------------------------------------------------------- /adminportal/src/main/resources/static/css/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foysal-mahmud/E-BookShop----Spring-boot/HEAD/adminportal/src/main/resources/static/css/style.css -------------------------------------------------------------------------------- /adminportal/src/main/resources/static/fonts/FontAwesome.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foysal-mahmud/E-BookShop----Spring-boot/HEAD/adminportal/src/main/resources/static/fonts/FontAwesome.otf -------------------------------------------------------------------------------- /adminportal/src/main/resources/static/fonts/fontawesome-webfont.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foysal-mahmud/E-BookShop----Spring-boot/HEAD/adminportal/src/main/resources/static/fonts/fontawesome-webfont.eot -------------------------------------------------------------------------------- /adminportal/src/main/resources/static/fonts/fontawesome-webfont.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foysal-mahmud/E-BookShop----Spring-boot/HEAD/adminportal/src/main/resources/static/fonts/fontawesome-webfont.svg -------------------------------------------------------------------------------- /adminportal/src/main/resources/static/fonts/fontawesome-webfont.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foysal-mahmud/E-BookShop----Spring-boot/HEAD/adminportal/src/main/resources/static/fonts/fontawesome-webfont.ttf -------------------------------------------------------------------------------- /adminportal/src/main/resources/static/fonts/fontawesome-webfont.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foysal-mahmud/E-BookShop----Spring-boot/HEAD/adminportal/src/main/resources/static/fonts/fontawesome-webfont.woff -------------------------------------------------------------------------------- /adminportal/src/main/resources/static/fonts/fontawesome-webfont.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foysal-mahmud/E-BookShop----Spring-boot/HEAD/adminportal/src/main/resources/static/fonts/fontawesome-webfont.woff2 -------------------------------------------------------------------------------- /adminportal/src/main/resources/static/fonts/glyphicons-halflings-regular.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foysal-mahmud/E-BookShop----Spring-boot/HEAD/adminportal/src/main/resources/static/fonts/glyphicons-halflings-regular.eot -------------------------------------------------------------------------------- /adminportal/src/main/resources/static/fonts/glyphicons-halflings-regular.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foysal-mahmud/E-BookShop----Spring-boot/HEAD/adminportal/src/main/resources/static/fonts/glyphicons-halflings-regular.svg -------------------------------------------------------------------------------- /adminportal/src/main/resources/static/fonts/glyphicons-halflings-regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foysal-mahmud/E-BookShop----Spring-boot/HEAD/adminportal/src/main/resources/static/fonts/glyphicons-halflings-regular.ttf -------------------------------------------------------------------------------- /adminportal/src/main/resources/static/fonts/glyphicons-halflings-regular.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foysal-mahmud/E-BookShop----Spring-boot/HEAD/adminportal/src/main/resources/static/fonts/glyphicons-halflings-regular.woff -------------------------------------------------------------------------------- /adminportal/src/main/resources/static/fonts/glyphicons-halflings-regular.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foysal-mahmud/E-BookShop----Spring-boot/HEAD/adminportal/src/main/resources/static/fonts/glyphicons-halflings-regular.woff2 -------------------------------------------------------------------------------- /adminportal/src/main/resources/static/image/apple-touch-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foysal-mahmud/E-BookShop----Spring-boot/HEAD/adminportal/src/main/resources/static/image/apple-touch-icon.png -------------------------------------------------------------------------------- /adminportal/src/main/resources/static/image/book/10.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foysal-mahmud/E-BookShop----Spring-boot/HEAD/adminportal/src/main/resources/static/image/book/10.png -------------------------------------------------------------------------------- /adminportal/src/main/resources/static/image/book/11.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foysal-mahmud/E-BookShop----Spring-boot/HEAD/adminportal/src/main/resources/static/image/book/11.png -------------------------------------------------------------------------------- /adminportal/src/main/resources/static/image/book/13.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foysal-mahmud/E-BookShop----Spring-boot/HEAD/adminportal/src/main/resources/static/image/book/13.png -------------------------------------------------------------------------------- /adminportal/src/main/resources/static/image/book/152.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foysal-mahmud/E-BookShop----Spring-boot/HEAD/adminportal/src/main/resources/static/image/book/152.png -------------------------------------------------------------------------------- /adminportal/src/main/resources/static/image/book/153.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foysal-mahmud/E-BookShop----Spring-boot/HEAD/adminportal/src/main/resources/static/image/book/153.png -------------------------------------------------------------------------------- /adminportal/src/main/resources/static/image/book/17.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foysal-mahmud/E-BookShop----Spring-boot/HEAD/adminportal/src/main/resources/static/image/book/17.png -------------------------------------------------------------------------------- /adminportal/src/main/resources/static/image/book/28.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foysal-mahmud/E-BookShop----Spring-boot/HEAD/adminportal/src/main/resources/static/image/book/28.png -------------------------------------------------------------------------------- /adminportal/src/main/resources/static/image/book/31.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foysal-mahmud/E-BookShop----Spring-boot/HEAD/adminportal/src/main/resources/static/image/book/31.png -------------------------------------------------------------------------------- /adminportal/src/main/resources/static/image/book/35.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foysal-mahmud/E-BookShop----Spring-boot/HEAD/adminportal/src/main/resources/static/image/book/35.png -------------------------------------------------------------------------------- /adminportal/src/main/resources/static/image/book/4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foysal-mahmud/E-BookShop----Spring-boot/HEAD/adminportal/src/main/resources/static/image/book/4.png -------------------------------------------------------------------------------- /adminportal/src/main/resources/static/image/book/45.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foysal-mahmud/E-BookShop----Spring-boot/HEAD/adminportal/src/main/resources/static/image/book/45.png -------------------------------------------------------------------------------- /adminportal/src/main/resources/static/image/book/46.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foysal-mahmud/E-BookShop----Spring-boot/HEAD/adminportal/src/main/resources/static/image/book/46.png -------------------------------------------------------------------------------- /adminportal/src/main/resources/static/image/book/47.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foysal-mahmud/E-BookShop----Spring-boot/HEAD/adminportal/src/main/resources/static/image/book/47.png -------------------------------------------------------------------------------- /adminportal/src/main/resources/static/image/book/48.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foysal-mahmud/E-BookShop----Spring-boot/HEAD/adminportal/src/main/resources/static/image/book/48.png -------------------------------------------------------------------------------- /adminportal/src/main/resources/static/image/book/49.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foysal-mahmud/E-BookShop----Spring-boot/HEAD/adminportal/src/main/resources/static/image/book/49.png -------------------------------------------------------------------------------- /adminportal/src/main/resources/static/image/book/5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foysal-mahmud/E-BookShop----Spring-boot/HEAD/adminportal/src/main/resources/static/image/book/5.png -------------------------------------------------------------------------------- /adminportal/src/main/resources/static/image/book/50.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foysal-mahmud/E-BookShop----Spring-boot/HEAD/adminportal/src/main/resources/static/image/book/50.png -------------------------------------------------------------------------------- /adminportal/src/main/resources/static/image/book/51.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foysal-mahmud/E-BookShop----Spring-boot/HEAD/adminportal/src/main/resources/static/image/book/51.png -------------------------------------------------------------------------------- /adminportal/src/main/resources/static/image/book/52.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foysal-mahmud/E-BookShop----Spring-boot/HEAD/adminportal/src/main/resources/static/image/book/52.png -------------------------------------------------------------------------------- /adminportal/src/main/resources/static/image/book/53.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foysal-mahmud/E-BookShop----Spring-boot/HEAD/adminportal/src/main/resources/static/image/book/53.png -------------------------------------------------------------------------------- /adminportal/src/main/resources/static/image/book/54.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foysal-mahmud/E-BookShop----Spring-boot/HEAD/adminportal/src/main/resources/static/image/book/54.png -------------------------------------------------------------------------------- /adminportal/src/main/resources/static/image/book/6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foysal-mahmud/E-BookShop----Spring-boot/HEAD/adminportal/src/main/resources/static/image/book/6.png -------------------------------------------------------------------------------- /adminportal/src/main/resources/static/image/book/88.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foysal-mahmud/E-BookShop----Spring-boot/HEAD/adminportal/src/main/resources/static/image/book/88.png -------------------------------------------------------------------------------- /adminportal/src/main/resources/static/image/book/89.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foysal-mahmud/E-BookShop----Spring-boot/HEAD/adminportal/src/main/resources/static/image/book/89.png -------------------------------------------------------------------------------- /adminportal/src/main/resources/static/image/book/90.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foysal-mahmud/E-BookShop----Spring-boot/HEAD/adminportal/src/main/resources/static/image/book/90.png -------------------------------------------------------------------------------- /adminportal/src/main/resources/static/image/faq.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foysal-mahmud/E-BookShop----Spring-boot/HEAD/adminportal/src/main/resources/static/image/faq.png -------------------------------------------------------------------------------- /adminportal/src/main/resources/static/image/hours.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foysal-mahmud/E-BookShop----Spring-boot/HEAD/adminportal/src/main/resources/static/image/hours.png -------------------------------------------------------------------------------- /adminportal/src/main/resources/static/image/img_avatar1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foysal-mahmud/E-BookShop----Spring-boot/HEAD/adminportal/src/main/resources/static/image/img_avatar1.png -------------------------------------------------------------------------------- /adminportal/src/main/resources/static/image/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foysal-mahmud/E-BookShop----Spring-boot/HEAD/adminportal/src/main/resources/static/image/logo.png -------------------------------------------------------------------------------- /adminportal/src/main/resources/static/image/mac.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foysal-mahmud/E-BookShop----Spring-boot/HEAD/adminportal/src/main/resources/static/image/mac.jpg -------------------------------------------------------------------------------- /adminportal/src/main/resources/static/image/shelf.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foysal-mahmud/E-BookShop----Spring-boot/HEAD/adminportal/src/main/resources/static/image/shelf.png -------------------------------------------------------------------------------- /adminportal/src/main/resources/static/image/wood.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foysal-mahmud/E-BookShop----Spring-boot/HEAD/adminportal/src/main/resources/static/image/wood.png -------------------------------------------------------------------------------- /adminportal/src/main/resources/static/js/bootstrap.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foysal-mahmud/E-BookShop----Spring-boot/HEAD/adminportal/src/main/resources/static/js/bootstrap.min.js -------------------------------------------------------------------------------- /adminportal/src/main/resources/static/js/jquery.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foysal-mahmud/E-BookShop----Spring-boot/HEAD/adminportal/src/main/resources/static/js/jquery.min.js -------------------------------------------------------------------------------- /adminportal/src/main/resources/templates/addBook.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foysal-mahmud/E-BookShop----Spring-boot/HEAD/adminportal/src/main/resources/templates/addBook.html -------------------------------------------------------------------------------- /adminportal/src/main/resources/templates/bookInfo.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foysal-mahmud/E-BookShop----Spring-boot/HEAD/adminportal/src/main/resources/templates/bookInfo.html -------------------------------------------------------------------------------- /adminportal/src/main/resources/templates/bookList.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foysal-mahmud/E-BookShop----Spring-boot/HEAD/adminportal/src/main/resources/templates/bookList.html -------------------------------------------------------------------------------- /adminportal/src/main/resources/templates/common/header.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foysal-mahmud/E-BookShop----Spring-boot/HEAD/adminportal/src/main/resources/templates/common/header.html -------------------------------------------------------------------------------- /adminportal/src/main/resources/templates/home.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foysal-mahmud/E-BookShop----Spring-boot/HEAD/adminportal/src/main/resources/templates/home.html -------------------------------------------------------------------------------- /adminportal/src/main/resources/templates/login.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foysal-mahmud/E-BookShop----Spring-boot/HEAD/adminportal/src/main/resources/templates/login.html -------------------------------------------------------------------------------- /adminportal/src/main/resources/templates/updateBook.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foysal-mahmud/E-BookShop----Spring-boot/HEAD/adminportal/src/main/resources/templates/updateBook.html -------------------------------------------------------------------------------- /adminportal/src/test/java/com/adminportal/AdminportalApplicationTests.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foysal-mahmud/E-BookShop----Spring-boot/HEAD/adminportal/src/test/java/com/adminportal/AdminportalApplicationTests.java -------------------------------------------------------------------------------- /adminportal/target/classes/META-INF/MANIFEST.MF: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foysal-mahmud/E-BookShop----Spring-boot/HEAD/adminportal/target/classes/META-INF/MANIFEST.MF -------------------------------------------------------------------------------- /adminportal/target/classes/META-INF/maven/com.adminportal/adminportal/pom.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foysal-mahmud/E-BookShop----Spring-boot/HEAD/adminportal/target/classes/META-INF/maven/com.adminportal/adminportal/pom.properties -------------------------------------------------------------------------------- /adminportal/target/classes/META-INF/maven/com.adminportal/adminportal/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foysal-mahmud/E-BookShop----Spring-boot/HEAD/adminportal/target/classes/META-INF/maven/com.adminportal/adminportal/pom.xml -------------------------------------------------------------------------------- /adminportal/target/classes/application.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foysal-mahmud/E-BookShop----Spring-boot/HEAD/adminportal/target/classes/application.properties -------------------------------------------------------------------------------- /adminportal/target/classes/com/adminportal/AdminportalApplication.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foysal-mahmud/E-BookShop----Spring-boot/HEAD/adminportal/target/classes/com/adminportal/AdminportalApplication.class -------------------------------------------------------------------------------- /adminportal/target/classes/com/adminportal/domain/Book.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foysal-mahmud/E-BookShop----Spring-boot/HEAD/adminportal/target/classes/com/adminportal/domain/Book.class -------------------------------------------------------------------------------- /adminportal/target/classes/com/adminportal/domain/User.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foysal-mahmud/E-BookShop----Spring-boot/HEAD/adminportal/target/classes/com/adminportal/domain/User.class -------------------------------------------------------------------------------- /adminportal/target/classes/com/adminportal/domain/security/Authority.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foysal-mahmud/E-BookShop----Spring-boot/HEAD/adminportal/target/classes/com/adminportal/domain/security/Authority.class -------------------------------------------------------------------------------- /adminportal/target/classes/com/adminportal/domain/security/PasswordResetToken.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foysal-mahmud/E-BookShop----Spring-boot/HEAD/adminportal/target/classes/com/adminportal/domain/security/PasswordResetToken.class -------------------------------------------------------------------------------- /adminportal/target/classes/com/adminportal/domain/security/Role.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foysal-mahmud/E-BookShop----Spring-boot/HEAD/adminportal/target/classes/com/adminportal/domain/security/Role.class -------------------------------------------------------------------------------- /adminportal/target/classes/com/adminportal/domain/security/UserRole.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foysal-mahmud/E-BookShop----Spring-boot/HEAD/adminportal/target/classes/com/adminportal/domain/security/UserRole.class -------------------------------------------------------------------------------- /adminportal/target/test-classes/com/adminportal/AdminportalApplicationTests.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foysal-mahmud/E-BookShop----Spring-boot/HEAD/adminportal/target/test-classes/com/adminportal/AdminportalApplicationTests.class -------------------------------------------------------------------------------- /bin/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foysal-mahmud/E-BookShop----Spring-boot/HEAD/bin/.gitignore -------------------------------------------------------------------------------- /bin/.mvn/wrapper/maven-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foysal-mahmud/E-BookShop----Spring-boot/HEAD/bin/.mvn/wrapper/maven-wrapper.jar -------------------------------------------------------------------------------- /bin/.mvn/wrapper/maven-wrapper.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foysal-mahmud/E-BookShop----Spring-boot/HEAD/bin/.mvn/wrapper/maven-wrapper.properties -------------------------------------------------------------------------------- /bin/mvnw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foysal-mahmud/E-BookShop----Spring-boot/HEAD/bin/mvnw -------------------------------------------------------------------------------- /bin/mvnw.cmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foysal-mahmud/E-BookShop----Spring-boot/HEAD/bin/mvnw.cmd -------------------------------------------------------------------------------- /bin/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foysal-mahmud/E-BookShop----Spring-boot/HEAD/bin/pom.xml -------------------------------------------------------------------------------- /bin/src/main/java/com/bookstore/BookstoreApplication.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foysal-mahmud/E-BookShop----Spring-boot/HEAD/bin/src/main/java/com/bookstore/BookstoreApplication.class -------------------------------------------------------------------------------- /bin/src/main/resources/application.properties: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /bin/src/test/java/com/bookstore/BookstoreApplicationTests.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foysal-mahmud/E-BookShop----Spring-boot/HEAD/bin/src/test/java/com/bookstore/BookstoreApplicationTests.class -------------------------------------------------------------------------------- /mvnw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foysal-mahmud/E-BookShop----Spring-boot/HEAD/mvnw -------------------------------------------------------------------------------- /mvnw.cmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foysal-mahmud/E-BookShop----Spring-boot/HEAD/mvnw.cmd -------------------------------------------------------------------------------- /pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foysal-mahmud/E-BookShop----Spring-boot/HEAD/pom.xml -------------------------------------------------------------------------------- /screensort/ebook1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foysal-mahmud/E-BookShop----Spring-boot/HEAD/screensort/ebook1.png -------------------------------------------------------------------------------- /screensort/ebook10.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foysal-mahmud/E-BookShop----Spring-boot/HEAD/screensort/ebook10.png -------------------------------------------------------------------------------- /screensort/ebook11.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foysal-mahmud/E-BookShop----Spring-boot/HEAD/screensort/ebook11.png -------------------------------------------------------------------------------- /screensort/ebook12.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foysal-mahmud/E-BookShop----Spring-boot/HEAD/screensort/ebook12.png -------------------------------------------------------------------------------- /screensort/ebook13.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foysal-mahmud/E-BookShop----Spring-boot/HEAD/screensort/ebook13.png -------------------------------------------------------------------------------- /screensort/ebook14.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foysal-mahmud/E-BookShop----Spring-boot/HEAD/screensort/ebook14.png -------------------------------------------------------------------------------- /screensort/ebook15.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foysal-mahmud/E-BookShop----Spring-boot/HEAD/screensort/ebook15.png -------------------------------------------------------------------------------- /screensort/ebook16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foysal-mahmud/E-BookShop----Spring-boot/HEAD/screensort/ebook16.png -------------------------------------------------------------------------------- /screensort/ebook17.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foysal-mahmud/E-BookShop----Spring-boot/HEAD/screensort/ebook17.png -------------------------------------------------------------------------------- /screensort/ebook18.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foysal-mahmud/E-BookShop----Spring-boot/HEAD/screensort/ebook18.png -------------------------------------------------------------------------------- /screensort/ebook19.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foysal-mahmud/E-BookShop----Spring-boot/HEAD/screensort/ebook19.png -------------------------------------------------------------------------------- /screensort/ebook2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foysal-mahmud/E-BookShop----Spring-boot/HEAD/screensort/ebook2.png -------------------------------------------------------------------------------- /screensort/ebook20.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foysal-mahmud/E-BookShop----Spring-boot/HEAD/screensort/ebook20.png -------------------------------------------------------------------------------- /screensort/ebook21.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foysal-mahmud/E-BookShop----Spring-boot/HEAD/screensort/ebook21.png -------------------------------------------------------------------------------- /screensort/ebook22.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foysal-mahmud/E-BookShop----Spring-boot/HEAD/screensort/ebook22.png -------------------------------------------------------------------------------- /screensort/ebook23.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foysal-mahmud/E-BookShop----Spring-boot/HEAD/screensort/ebook23.png -------------------------------------------------------------------------------- /screensort/ebook23copy.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foysal-mahmud/E-BookShop----Spring-boot/HEAD/screensort/ebook23copy.png -------------------------------------------------------------------------------- /screensort/ebook24.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foysal-mahmud/E-BookShop----Spring-boot/HEAD/screensort/ebook24.png -------------------------------------------------------------------------------- /screensort/ebook25.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foysal-mahmud/E-BookShop----Spring-boot/HEAD/screensort/ebook25.png -------------------------------------------------------------------------------- /screensort/ebook26.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foysal-mahmud/E-BookShop----Spring-boot/HEAD/screensort/ebook26.png -------------------------------------------------------------------------------- /screensort/ebook27.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foysal-mahmud/E-BookShop----Spring-boot/HEAD/screensort/ebook27.png -------------------------------------------------------------------------------- /screensort/ebook28.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foysal-mahmud/E-BookShop----Spring-boot/HEAD/screensort/ebook28.png -------------------------------------------------------------------------------- /screensort/ebook29.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foysal-mahmud/E-BookShop----Spring-boot/HEAD/screensort/ebook29.png -------------------------------------------------------------------------------- /screensort/ebook3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foysal-mahmud/E-BookShop----Spring-boot/HEAD/screensort/ebook3.png -------------------------------------------------------------------------------- /screensort/ebook30.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foysal-mahmud/E-BookShop----Spring-boot/HEAD/screensort/ebook30.png -------------------------------------------------------------------------------- /screensort/ebook31.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foysal-mahmud/E-BookShop----Spring-boot/HEAD/screensort/ebook31.png -------------------------------------------------------------------------------- /screensort/ebook32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foysal-mahmud/E-BookShop----Spring-boot/HEAD/screensort/ebook32.png -------------------------------------------------------------------------------- /screensort/ebook33.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foysal-mahmud/E-BookShop----Spring-boot/HEAD/screensort/ebook33.png -------------------------------------------------------------------------------- /screensort/ebook34.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foysal-mahmud/E-BookShop----Spring-boot/HEAD/screensort/ebook34.png -------------------------------------------------------------------------------- /screensort/ebook35.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foysal-mahmud/E-BookShop----Spring-boot/HEAD/screensort/ebook35.png -------------------------------------------------------------------------------- /screensort/ebook36.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foysal-mahmud/E-BookShop----Spring-boot/HEAD/screensort/ebook36.png -------------------------------------------------------------------------------- /screensort/ebook37.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foysal-mahmud/E-BookShop----Spring-boot/HEAD/screensort/ebook37.png -------------------------------------------------------------------------------- /screensort/ebook4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foysal-mahmud/E-BookShop----Spring-boot/HEAD/screensort/ebook4.png -------------------------------------------------------------------------------- /screensort/ebook5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foysal-mahmud/E-BookShop----Spring-boot/HEAD/screensort/ebook5.png -------------------------------------------------------------------------------- /screensort/ebook6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foysal-mahmud/E-BookShop----Spring-boot/HEAD/screensort/ebook6.png -------------------------------------------------------------------------------- /screensort/ebook7.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foysal-mahmud/E-BookShop----Spring-boot/HEAD/screensort/ebook7.png -------------------------------------------------------------------------------- /screensort/ebook8.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foysal-mahmud/E-BookShop----Spring-boot/HEAD/screensort/ebook8.png -------------------------------------------------------------------------------- /screensort/ebook9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foysal-mahmud/E-BookShop----Spring-boot/HEAD/screensort/ebook9.png -------------------------------------------------------------------------------- /src/main/java/com/eCommerce/ECommerceApplication.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foysal-mahmud/E-BookShop----Spring-boot/HEAD/src/main/java/com/eCommerce/ECommerceApplication.java -------------------------------------------------------------------------------- /src/main/java/com/eCommerce/config/SecurityConfig.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foysal-mahmud/E-BookShop----Spring-boot/HEAD/src/main/java/com/eCommerce/config/SecurityConfig.java -------------------------------------------------------------------------------- /src/main/java/com/eCommerce/controller/CheckoutController.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foysal-mahmud/E-BookShop----Spring-boot/HEAD/src/main/java/com/eCommerce/controller/CheckoutController.java -------------------------------------------------------------------------------- /src/main/java/com/eCommerce/controller/HomeController.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foysal-mahmud/E-BookShop----Spring-boot/HEAD/src/main/java/com/eCommerce/controller/HomeController.java -------------------------------------------------------------------------------- /src/main/java/com/eCommerce/controller/SearchController.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foysal-mahmud/E-BookShop----Spring-boot/HEAD/src/main/java/com/eCommerce/controller/SearchController.java -------------------------------------------------------------------------------- /src/main/java/com/eCommerce/controller/ShoppingCartController.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foysal-mahmud/E-BookShop----Spring-boot/HEAD/src/main/java/com/eCommerce/controller/ShoppingCartController.java -------------------------------------------------------------------------------- /src/main/java/com/eCommerce/domain/BillingAddress.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foysal-mahmud/E-BookShop----Spring-boot/HEAD/src/main/java/com/eCommerce/domain/BillingAddress.java -------------------------------------------------------------------------------- /src/main/java/com/eCommerce/domain/Book.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foysal-mahmud/E-BookShop----Spring-boot/HEAD/src/main/java/com/eCommerce/domain/Book.java -------------------------------------------------------------------------------- /src/main/java/com/eCommerce/domain/BookToCartItem.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foysal-mahmud/E-BookShop----Spring-boot/HEAD/src/main/java/com/eCommerce/domain/BookToCartItem.java -------------------------------------------------------------------------------- /src/main/java/com/eCommerce/domain/CartItem.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foysal-mahmud/E-BookShop----Spring-boot/HEAD/src/main/java/com/eCommerce/domain/CartItem.java -------------------------------------------------------------------------------- /src/main/java/com/eCommerce/domain/Order.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foysal-mahmud/E-BookShop----Spring-boot/HEAD/src/main/java/com/eCommerce/domain/Order.java -------------------------------------------------------------------------------- /src/main/java/com/eCommerce/domain/Payment.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foysal-mahmud/E-BookShop----Spring-boot/HEAD/src/main/java/com/eCommerce/domain/Payment.java -------------------------------------------------------------------------------- /src/main/java/com/eCommerce/domain/ShippingAddress.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foysal-mahmud/E-BookShop----Spring-boot/HEAD/src/main/java/com/eCommerce/domain/ShippingAddress.java -------------------------------------------------------------------------------- /src/main/java/com/eCommerce/domain/ShoppingCart.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foysal-mahmud/E-BookShop----Spring-boot/HEAD/src/main/java/com/eCommerce/domain/ShoppingCart.java -------------------------------------------------------------------------------- /src/main/java/com/eCommerce/domain/User.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foysal-mahmud/E-BookShop----Spring-boot/HEAD/src/main/java/com/eCommerce/domain/User.java -------------------------------------------------------------------------------- /src/main/java/com/eCommerce/domain/UserBilling.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foysal-mahmud/E-BookShop----Spring-boot/HEAD/src/main/java/com/eCommerce/domain/UserBilling.java -------------------------------------------------------------------------------- /src/main/java/com/eCommerce/domain/UserPayment.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foysal-mahmud/E-BookShop----Spring-boot/HEAD/src/main/java/com/eCommerce/domain/UserPayment.java -------------------------------------------------------------------------------- /src/main/java/com/eCommerce/domain/UserShipping.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foysal-mahmud/E-BookShop----Spring-boot/HEAD/src/main/java/com/eCommerce/domain/UserShipping.java -------------------------------------------------------------------------------- /src/main/java/com/eCommerce/domain/security/Authority.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foysal-mahmud/E-BookShop----Spring-boot/HEAD/src/main/java/com/eCommerce/domain/security/Authority.java -------------------------------------------------------------------------------- /src/main/java/com/eCommerce/domain/security/PasswordResetToken.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foysal-mahmud/E-BookShop----Spring-boot/HEAD/src/main/java/com/eCommerce/domain/security/PasswordResetToken.java -------------------------------------------------------------------------------- /src/main/java/com/eCommerce/domain/security/Role.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foysal-mahmud/E-BookShop----Spring-boot/HEAD/src/main/java/com/eCommerce/domain/security/Role.java -------------------------------------------------------------------------------- /src/main/java/com/eCommerce/domain/security/UserRole.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foysal-mahmud/E-BookShop----Spring-boot/HEAD/src/main/java/com/eCommerce/domain/security/UserRole.java -------------------------------------------------------------------------------- /src/main/java/com/eCommerce/repository/BookRepository.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foysal-mahmud/E-BookShop----Spring-boot/HEAD/src/main/java/com/eCommerce/repository/BookRepository.java -------------------------------------------------------------------------------- /src/main/java/com/eCommerce/repository/BookToCartItemRepository.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foysal-mahmud/E-BookShop----Spring-boot/HEAD/src/main/java/com/eCommerce/repository/BookToCartItemRepository.java -------------------------------------------------------------------------------- /src/main/java/com/eCommerce/repository/CartItemRepository.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foysal-mahmud/E-BookShop----Spring-boot/HEAD/src/main/java/com/eCommerce/repository/CartItemRepository.java -------------------------------------------------------------------------------- /src/main/java/com/eCommerce/repository/OrderRepository.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foysal-mahmud/E-BookShop----Spring-boot/HEAD/src/main/java/com/eCommerce/repository/OrderRepository.java -------------------------------------------------------------------------------- /src/main/java/com/eCommerce/repository/PasswordResetTokenRepository.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foysal-mahmud/E-BookShop----Spring-boot/HEAD/src/main/java/com/eCommerce/repository/PasswordResetTokenRepository.java -------------------------------------------------------------------------------- /src/main/java/com/eCommerce/repository/RoleRepository.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foysal-mahmud/E-BookShop----Spring-boot/HEAD/src/main/java/com/eCommerce/repository/RoleRepository.java -------------------------------------------------------------------------------- /src/main/java/com/eCommerce/repository/ShoppingCartRepository.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foysal-mahmud/E-BookShop----Spring-boot/HEAD/src/main/java/com/eCommerce/repository/ShoppingCartRepository.java -------------------------------------------------------------------------------- /src/main/java/com/eCommerce/repository/UserPaymentRepository.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foysal-mahmud/E-BookShop----Spring-boot/HEAD/src/main/java/com/eCommerce/repository/UserPaymentRepository.java -------------------------------------------------------------------------------- /src/main/java/com/eCommerce/repository/UserRepository.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foysal-mahmud/E-BookShop----Spring-boot/HEAD/src/main/java/com/eCommerce/repository/UserRepository.java -------------------------------------------------------------------------------- /src/main/java/com/eCommerce/repository/UserShippingRepository.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foysal-mahmud/E-BookShop----Spring-boot/HEAD/src/main/java/com/eCommerce/repository/UserShippingRepository.java -------------------------------------------------------------------------------- /src/main/java/com/eCommerce/service/BillingAddressService.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foysal-mahmud/E-BookShop----Spring-boot/HEAD/src/main/java/com/eCommerce/service/BillingAddressService.java -------------------------------------------------------------------------------- /src/main/java/com/eCommerce/service/BookService.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foysal-mahmud/E-BookShop----Spring-boot/HEAD/src/main/java/com/eCommerce/service/BookService.java -------------------------------------------------------------------------------- /src/main/java/com/eCommerce/service/CartItemService.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foysal-mahmud/E-BookShop----Spring-boot/HEAD/src/main/java/com/eCommerce/service/CartItemService.java -------------------------------------------------------------------------------- /src/main/java/com/eCommerce/service/OrderService.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foysal-mahmud/E-BookShop----Spring-boot/HEAD/src/main/java/com/eCommerce/service/OrderService.java -------------------------------------------------------------------------------- /src/main/java/com/eCommerce/service/PaymentService.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foysal-mahmud/E-BookShop----Spring-boot/HEAD/src/main/java/com/eCommerce/service/PaymentService.java -------------------------------------------------------------------------------- /src/main/java/com/eCommerce/service/ShippingAddressService.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foysal-mahmud/E-BookShop----Spring-boot/HEAD/src/main/java/com/eCommerce/service/ShippingAddressService.java -------------------------------------------------------------------------------- /src/main/java/com/eCommerce/service/ShoppingCartService.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foysal-mahmud/E-BookShop----Spring-boot/HEAD/src/main/java/com/eCommerce/service/ShoppingCartService.java -------------------------------------------------------------------------------- /src/main/java/com/eCommerce/service/UserPaymentService.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foysal-mahmud/E-BookShop----Spring-boot/HEAD/src/main/java/com/eCommerce/service/UserPaymentService.java -------------------------------------------------------------------------------- /src/main/java/com/eCommerce/service/UserService.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foysal-mahmud/E-BookShop----Spring-boot/HEAD/src/main/java/com/eCommerce/service/UserService.java -------------------------------------------------------------------------------- /src/main/java/com/eCommerce/service/UserShippingService.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foysal-mahmud/E-BookShop----Spring-boot/HEAD/src/main/java/com/eCommerce/service/UserShippingService.java -------------------------------------------------------------------------------- /src/main/java/com/eCommerce/service/impl/BillingAddressServiceImpl.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foysal-mahmud/E-BookShop----Spring-boot/HEAD/src/main/java/com/eCommerce/service/impl/BillingAddressServiceImpl.java -------------------------------------------------------------------------------- /src/main/java/com/eCommerce/service/impl/BookServiceImpl.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foysal-mahmud/E-BookShop----Spring-boot/HEAD/src/main/java/com/eCommerce/service/impl/BookServiceImpl.java -------------------------------------------------------------------------------- /src/main/java/com/eCommerce/service/impl/CartItemServiceImpl.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foysal-mahmud/E-BookShop----Spring-boot/HEAD/src/main/java/com/eCommerce/service/impl/CartItemServiceImpl.java -------------------------------------------------------------------------------- /src/main/java/com/eCommerce/service/impl/OrderServiceImpl.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foysal-mahmud/E-BookShop----Spring-boot/HEAD/src/main/java/com/eCommerce/service/impl/OrderServiceImpl.java -------------------------------------------------------------------------------- /src/main/java/com/eCommerce/service/impl/PaymentServiceImpl.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foysal-mahmud/E-BookShop----Spring-boot/HEAD/src/main/java/com/eCommerce/service/impl/PaymentServiceImpl.java -------------------------------------------------------------------------------- /src/main/java/com/eCommerce/service/impl/ShippingAddressServiceImpl.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foysal-mahmud/E-BookShop----Spring-boot/HEAD/src/main/java/com/eCommerce/service/impl/ShippingAddressServiceImpl.java -------------------------------------------------------------------------------- /src/main/java/com/eCommerce/service/impl/ShoppingCartServiceImpl.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foysal-mahmud/E-BookShop----Spring-boot/HEAD/src/main/java/com/eCommerce/service/impl/ShoppingCartServiceImpl.java -------------------------------------------------------------------------------- /src/main/java/com/eCommerce/service/impl/UserPaymentServiceImpl.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foysal-mahmud/E-BookShop----Spring-boot/HEAD/src/main/java/com/eCommerce/service/impl/UserPaymentServiceImpl.java -------------------------------------------------------------------------------- /src/main/java/com/eCommerce/service/impl/UserSecurityService.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foysal-mahmud/E-BookShop----Spring-boot/HEAD/src/main/java/com/eCommerce/service/impl/UserSecurityService.java -------------------------------------------------------------------------------- /src/main/java/com/eCommerce/service/impl/UserServiceImpl.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foysal-mahmud/E-BookShop----Spring-boot/HEAD/src/main/java/com/eCommerce/service/impl/UserServiceImpl.java -------------------------------------------------------------------------------- /src/main/java/com/eCommerce/service/impl/UserShippingServiceImpl.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foysal-mahmud/E-BookShop----Spring-boot/HEAD/src/main/java/com/eCommerce/service/impl/UserShippingServiceImpl.java -------------------------------------------------------------------------------- /src/main/java/com/eCommerce/utility/MailConstructor.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foysal-mahmud/E-BookShop----Spring-boot/HEAD/src/main/java/com/eCommerce/utility/MailConstructor.java -------------------------------------------------------------------------------- /src/main/java/com/eCommerce/utility/SecurityUtility.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foysal-mahmud/E-BookShop----Spring-boot/HEAD/src/main/java/com/eCommerce/utility/SecurityUtility.java -------------------------------------------------------------------------------- /src/main/java/com/eCommerce/utility/USConstants.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foysal-mahmud/E-BookShop----Spring-boot/HEAD/src/main/java/com/eCommerce/utility/USConstants.java -------------------------------------------------------------------------------- /src/main/resources/application.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foysal-mahmud/E-BookShop----Spring-boot/HEAD/src/main/resources/application.properties -------------------------------------------------------------------------------- /src/main/resources/messages.properties: -------------------------------------------------------------------------------- 1 | adminPath=http://localhost:8081/adminportal -------------------------------------------------------------------------------- /src/main/resources/static/css/bootstrap-theme.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foysal-mahmud/E-BookShop----Spring-boot/HEAD/src/main/resources/static/css/bootstrap-theme.min.css -------------------------------------------------------------------------------- /src/main/resources/static/css/bootstrap.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foysal-mahmud/E-BookShop----Spring-boot/HEAD/src/main/resources/static/css/bootstrap.min.css -------------------------------------------------------------------------------- /src/main/resources/static/css/dataTables.bootstrap.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foysal-mahmud/E-BookShop----Spring-boot/HEAD/src/main/resources/static/css/dataTables.bootstrap.min.css -------------------------------------------------------------------------------- /src/main/resources/static/css/dataTables.jqueryui.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foysal-mahmud/E-BookShop----Spring-boot/HEAD/src/main/resources/static/css/dataTables.jqueryui.min.css -------------------------------------------------------------------------------- /src/main/resources/static/css/font-awesome.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foysal-mahmud/E-BookShop----Spring-boot/HEAD/src/main/resources/static/css/font-awesome.min.css -------------------------------------------------------------------------------- /src/main/resources/static/css/jquery.dataTables.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foysal-mahmud/E-BookShop----Spring-boot/HEAD/src/main/resources/static/css/jquery.dataTables.min.css -------------------------------------------------------------------------------- /src/main/resources/static/css/jquery.dataTables_themeroller.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foysal-mahmud/E-BookShop----Spring-boot/HEAD/src/main/resources/static/css/jquery.dataTables_themeroller.css -------------------------------------------------------------------------------- /src/main/resources/static/css/non-responsive.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foysal-mahmud/E-BookShop----Spring-boot/HEAD/src/main/resources/static/css/non-responsive.css -------------------------------------------------------------------------------- /src/main/resources/static/css/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foysal-mahmud/E-BookShop----Spring-boot/HEAD/src/main/resources/static/css/style.css -------------------------------------------------------------------------------- /src/main/resources/static/fonts/FontAwesome.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foysal-mahmud/E-BookShop----Spring-boot/HEAD/src/main/resources/static/fonts/FontAwesome.otf -------------------------------------------------------------------------------- /src/main/resources/static/fonts/fontawesome-webfont.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foysal-mahmud/E-BookShop----Spring-boot/HEAD/src/main/resources/static/fonts/fontawesome-webfont.eot -------------------------------------------------------------------------------- /src/main/resources/static/fonts/fontawesome-webfont.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foysal-mahmud/E-BookShop----Spring-boot/HEAD/src/main/resources/static/fonts/fontawesome-webfont.svg -------------------------------------------------------------------------------- /src/main/resources/static/fonts/fontawesome-webfont.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foysal-mahmud/E-BookShop----Spring-boot/HEAD/src/main/resources/static/fonts/fontawesome-webfont.ttf -------------------------------------------------------------------------------- /src/main/resources/static/fonts/fontawesome-webfont.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foysal-mahmud/E-BookShop----Spring-boot/HEAD/src/main/resources/static/fonts/fontawesome-webfont.woff -------------------------------------------------------------------------------- /src/main/resources/static/fonts/fontawesome-webfont.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foysal-mahmud/E-BookShop----Spring-boot/HEAD/src/main/resources/static/fonts/fontawesome-webfont.woff2 -------------------------------------------------------------------------------- /src/main/resources/static/fonts/glyphicons-halflings-regular.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foysal-mahmud/E-BookShop----Spring-boot/HEAD/src/main/resources/static/fonts/glyphicons-halflings-regular.eot -------------------------------------------------------------------------------- /src/main/resources/static/fonts/glyphicons-halflings-regular.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foysal-mahmud/E-BookShop----Spring-boot/HEAD/src/main/resources/static/fonts/glyphicons-halflings-regular.svg -------------------------------------------------------------------------------- /src/main/resources/static/fonts/glyphicons-halflings-regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foysal-mahmud/E-BookShop----Spring-boot/HEAD/src/main/resources/static/fonts/glyphicons-halflings-regular.ttf -------------------------------------------------------------------------------- /src/main/resources/static/fonts/glyphicons-halflings-regular.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foysal-mahmud/E-BookShop----Spring-boot/HEAD/src/main/resources/static/fonts/glyphicons-halflings-regular.woff -------------------------------------------------------------------------------- /src/main/resources/static/fonts/glyphicons-halflings-regular.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foysal-mahmud/E-BookShop----Spring-boot/HEAD/src/main/resources/static/fonts/glyphicons-halflings-regular.woff2 -------------------------------------------------------------------------------- /src/main/resources/static/image/bank.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foysal-mahmud/E-BookShop----Spring-boot/HEAD/src/main/resources/static/image/bank.jpg -------------------------------------------------------------------------------- /src/main/resources/static/image/bgline.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foysal-mahmud/E-BookShop----Spring-boot/HEAD/src/main/resources/static/image/bgline.png -------------------------------------------------------------------------------- /src/main/resources/static/image/book1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foysal-mahmud/E-BookShop----Spring-boot/HEAD/src/main/resources/static/image/book1.png -------------------------------------------------------------------------------- /src/main/resources/static/image/book2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foysal-mahmud/E-BookShop----Spring-boot/HEAD/src/main/resources/static/image/book2.png -------------------------------------------------------------------------------- /src/main/resources/static/image/book3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foysal-mahmud/E-BookShop----Spring-boot/HEAD/src/main/resources/static/image/book3.png -------------------------------------------------------------------------------- /src/main/resources/static/image/book4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foysal-mahmud/E-BookShop----Spring-boot/HEAD/src/main/resources/static/image/book4.png -------------------------------------------------------------------------------- /src/main/resources/static/image/book5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foysal-mahmud/E-BookShop----Spring-boot/HEAD/src/main/resources/static/image/book5.png -------------------------------------------------------------------------------- /src/main/resources/static/image/book6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foysal-mahmud/E-BookShop----Spring-boot/HEAD/src/main/resources/static/image/book6.png -------------------------------------------------------------------------------- /src/main/resources/static/image/creditcard.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foysal-mahmud/E-BookShop----Spring-boot/HEAD/src/main/resources/static/image/creditcard.png -------------------------------------------------------------------------------- /src/main/resources/static/image/ecommerce-dev.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foysal-mahmud/E-BookShop----Spring-boot/HEAD/src/main/resources/static/image/ecommerce-dev.png -------------------------------------------------------------------------------- /src/main/resources/static/image/faq.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foysal-mahmud/E-BookShop----Spring-boot/HEAD/src/main/resources/static/image/faq.png -------------------------------------------------------------------------------- /src/main/resources/static/image/foysal_2qy_1.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foysal-mahmud/E-BookShop----Spring-boot/HEAD/src/main/resources/static/image/foysal_2qy_1.ico -------------------------------------------------------------------------------- /src/main/resources/static/image/hours.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foysal-mahmud/E-BookShop----Spring-boot/HEAD/src/main/resources/static/image/hours.png -------------------------------------------------------------------------------- /src/main/resources/static/image/library.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foysal-mahmud/E-BookShop----Spring-boot/HEAD/src/main/resources/static/image/library.png -------------------------------------------------------------------------------- /src/main/resources/static/image/library3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foysal-mahmud/E-BookShop----Spring-boot/HEAD/src/main/resources/static/image/library3.jpg -------------------------------------------------------------------------------- /src/main/resources/static/image/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foysal-mahmud/E-BookShop----Spring-boot/HEAD/src/main/resources/static/image/logo.png -------------------------------------------------------------------------------- /src/main/resources/static/image/logo2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foysal-mahmud/E-BookShop----Spring-boot/HEAD/src/main/resources/static/image/logo2.png -------------------------------------------------------------------------------- /src/main/resources/static/image/macbook.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foysal-mahmud/E-BookShop----Spring-boot/HEAD/src/main/resources/static/image/macbook.jpg -------------------------------------------------------------------------------- /src/main/resources/static/image/me.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foysal-mahmud/E-BookShop----Spring-boot/HEAD/src/main/resources/static/image/me.jpg -------------------------------------------------------------------------------- /src/main/resources/static/image/programmingBook.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foysal-mahmud/E-BookShop----Spring-boot/HEAD/src/main/resources/static/image/programmingBook.png -------------------------------------------------------------------------------- /src/main/resources/static/image/shelf.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foysal-mahmud/E-BookShop----Spring-boot/HEAD/src/main/resources/static/image/shelf.png -------------------------------------------------------------------------------- /src/main/resources/static/image/web-dev.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foysal-mahmud/E-BookShop----Spring-boot/HEAD/src/main/resources/static/image/web-dev.jpg -------------------------------------------------------------------------------- /src/main/resources/static/image/wood.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foysal-mahmud/E-BookShop----Spring-boot/HEAD/src/main/resources/static/image/wood.png -------------------------------------------------------------------------------- /src/main/resources/static/js/bootstrap.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foysal-mahmud/E-BookShop----Spring-boot/HEAD/src/main/resources/static/js/bootstrap.min.js -------------------------------------------------------------------------------- /src/main/resources/static/js/dataTables.bootstrap.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foysal-mahmud/E-BookShop----Spring-boot/HEAD/src/main/resources/static/js/dataTables.bootstrap.min.js -------------------------------------------------------------------------------- /src/main/resources/static/js/dataTables.jqueryui.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foysal-mahmud/E-BookShop----Spring-boot/HEAD/src/main/resources/static/js/dataTables.jqueryui.min.js -------------------------------------------------------------------------------- /src/main/resources/static/js/dataTables.uikit.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foysal-mahmud/E-BookShop----Spring-boot/HEAD/src/main/resources/static/js/dataTables.uikit.min.js -------------------------------------------------------------------------------- /src/main/resources/static/js/jquery.dataTables.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foysal-mahmud/E-BookShop----Spring-boot/HEAD/src/main/resources/static/js/jquery.dataTables.min.js -------------------------------------------------------------------------------- /src/main/resources/static/js/jquery.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foysal-mahmud/E-BookShop----Spring-boot/HEAD/src/main/resources/static/js/jquery.min.js -------------------------------------------------------------------------------- /src/main/resources/static/js/scripts.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foysal-mahmud/E-BookShop----Spring-boot/HEAD/src/main/resources/static/js/scripts.js -------------------------------------------------------------------------------- /src/main/resources/templates/badRequestPage.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foysal-mahmud/E-BookShop----Spring-boot/HEAD/src/main/resources/templates/badRequestPage.html -------------------------------------------------------------------------------- /src/main/resources/templates/bookDetail.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foysal-mahmud/E-BookShop----Spring-boot/HEAD/src/main/resources/templates/bookDetail.html -------------------------------------------------------------------------------- /src/main/resources/templates/bookshelf.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foysal-mahmud/E-BookShop----Spring-boot/HEAD/src/main/resources/templates/bookshelf.html -------------------------------------------------------------------------------- /src/main/resources/templates/checkout.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foysal-mahmud/E-BookShop----Spring-boot/HEAD/src/main/resources/templates/checkout.html -------------------------------------------------------------------------------- /src/main/resources/templates/common/header.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foysal-mahmud/E-BookShop----Spring-boot/HEAD/src/main/resources/templates/common/header.html -------------------------------------------------------------------------------- /src/main/resources/templates/faq.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foysal-mahmud/E-BookShop----Spring-boot/HEAD/src/main/resources/templates/faq.html -------------------------------------------------------------------------------- /src/main/resources/templates/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foysal-mahmud/E-BookShop----Spring-boot/HEAD/src/main/resources/templates/index.html -------------------------------------------------------------------------------- /src/main/resources/templates/myAccount.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foysal-mahmud/E-BookShop----Spring-boot/HEAD/src/main/resources/templates/myAccount.html -------------------------------------------------------------------------------- /src/main/resources/templates/myProfile.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foysal-mahmud/E-BookShop----Spring-boot/HEAD/src/main/resources/templates/myProfile.html -------------------------------------------------------------------------------- /src/main/resources/templates/orderConfirmationEmailTemplate.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foysal-mahmud/E-BookShop----Spring-boot/HEAD/src/main/resources/templates/orderConfirmationEmailTemplate.html -------------------------------------------------------------------------------- /src/main/resources/templates/orderSubmittedPage.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foysal-mahmud/E-BookShop----Spring-boot/HEAD/src/main/resources/templates/orderSubmittedPage.html -------------------------------------------------------------------------------- /src/main/resources/templates/shoppingCart.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foysal-mahmud/E-BookShop----Spring-boot/HEAD/src/main/resources/templates/shoppingCart.html -------------------------------------------------------------------------------- /src/test/java/com/eCommerce/ECommerceApplicationTests.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foysal-mahmud/E-BookShop----Spring-boot/HEAD/src/test/java/com/eCommerce/ECommerceApplicationTests.java --------------------------------------------------------------------------------