├── .gitignore ├── .mvn └── wrapper │ ├── maven-wrapper.jar │ └── maven-wrapper.properties ├── README.md ├── mvnw ├── mvnw.cmd ├── pom.xml └── src ├── main ├── java │ └── ma │ │ └── inpt │ │ └── rentingCarApp │ │ ├── CarRentingApplication.java │ │ ├── DAO │ │ ├── CarRepository.java │ │ ├── NotificationRepository.java │ │ └── UserRepository.java │ │ ├── controllers │ │ ├── AdminController.java │ │ ├── EmployeeController.java │ │ ├── ErrorPagesController.java │ │ ├── HomeController.java │ │ ├── SecurityController.java │ │ └── UserController.java │ │ ├── entities │ │ ├── Car.java │ │ ├── Notification.java │ │ └── User.java │ │ ├── security │ │ ├── CurrentUserFinder.java │ │ ├── SecurityConfiguration.java │ │ └── SecurityContext.java │ │ ├── services │ │ ├── CarService.java │ │ ├── NotificationService.java │ │ └── UserService.java │ │ └── utils │ │ ├── DateTracker.java │ │ ├── FineCalculator.java │ │ ├── ListInStringConverter.java │ │ └── MidnightApplicationRefresh.java └── resources │ ├── application.properties │ ├── static │ ├── CSS │ │ ├── account-layout.css │ │ └── security-layout.css │ └── Images │ │ ├── payment-icons.png │ │ ├── payment.png │ │ └── road.jpg │ └── templates │ ├── admin │ ├── admin-account-settings-saved.html │ ├── admin-confirm-account-settings.html │ ├── admin-home.html │ ├── admin-manage-account.html │ └── admin-manage-accounts.html │ ├── employee │ ├── employee-car-deleted.html │ ├── employee-car-information-changed.html │ ├── employee-car-saved.html │ ├── employee-cars-returned.html │ ├── employee-change-car-info.html │ ├── employee-confirm-order.html │ ├── employee-confirm-returned-cars.html │ ├── employee-delete-car.html │ ├── employee-home.html │ ├── employee-new-car.html │ ├── employee-order-saved.html │ ├── employee-orders.html │ ├── employee-reservation-ready-for-pick-up.html │ ├── employee-reservations.html │ ├── employee-returned-cars.html │ ├── employee-show-cars.html │ ├── employee-show-user-info.html │ └── employee-show-users.html │ ├── error-pages │ ├── 400-error.html │ ├── 403-error.html │ ├── 404-error.html │ ├── 408-error.html │ ├── 500-error.html │ ├── 502-error.html │ ├── 503-error.html │ └── 504-error.html │ ├── page-layout.html │ ├── security │ ├── account-created.html │ ├── login.html │ ├── logout.html │ └── register.html │ └── user │ ├── user-FAQ.html │ ├── user-browse-cars.html │ ├── user-car-can-not-be-extended.html │ ├── user-car-extended.html │ ├── user-do-payment.html │ ├── user-home.html │ ├── user-pay-fine.html │ ├── user-pay-reservation.html │ ├── user-your-cars.html │ └── user-your-reservations.html └── test └── java └── com └── example └── car_renting_application_with_springboot └── CarRentingApplicationWithSpringBootApplicationTests.java /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labrijisaad/Car_Renting_Application_with_Spring-Boot/HEAD/.gitignore -------------------------------------------------------------------------------- /.mvn/wrapper/maven-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labrijisaad/Car_Renting_Application_with_Spring-Boot/HEAD/.mvn/wrapper/maven-wrapper.jar -------------------------------------------------------------------------------- /.mvn/wrapper/maven-wrapper.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labrijisaad/Car_Renting_Application_with_Spring-Boot/HEAD/.mvn/wrapper/maven-wrapper.properties -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labrijisaad/Car_Renting_Application_with_Spring-Boot/HEAD/README.md -------------------------------------------------------------------------------- /mvnw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labrijisaad/Car_Renting_Application_with_Spring-Boot/HEAD/mvnw -------------------------------------------------------------------------------- /mvnw.cmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labrijisaad/Car_Renting_Application_with_Spring-Boot/HEAD/mvnw.cmd -------------------------------------------------------------------------------- /pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labrijisaad/Car_Renting_Application_with_Spring-Boot/HEAD/pom.xml -------------------------------------------------------------------------------- /src/main/java/ma/inpt/rentingCarApp/CarRentingApplication.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labrijisaad/Car_Renting_Application_with_Spring-Boot/HEAD/src/main/java/ma/inpt/rentingCarApp/CarRentingApplication.java -------------------------------------------------------------------------------- /src/main/java/ma/inpt/rentingCarApp/DAO/CarRepository.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labrijisaad/Car_Renting_Application_with_Spring-Boot/HEAD/src/main/java/ma/inpt/rentingCarApp/DAO/CarRepository.java -------------------------------------------------------------------------------- /src/main/java/ma/inpt/rentingCarApp/DAO/NotificationRepository.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labrijisaad/Car_Renting_Application_with_Spring-Boot/HEAD/src/main/java/ma/inpt/rentingCarApp/DAO/NotificationRepository.java -------------------------------------------------------------------------------- /src/main/java/ma/inpt/rentingCarApp/DAO/UserRepository.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labrijisaad/Car_Renting_Application_with_Spring-Boot/HEAD/src/main/java/ma/inpt/rentingCarApp/DAO/UserRepository.java -------------------------------------------------------------------------------- /src/main/java/ma/inpt/rentingCarApp/controllers/AdminController.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labrijisaad/Car_Renting_Application_with_Spring-Boot/HEAD/src/main/java/ma/inpt/rentingCarApp/controllers/AdminController.java -------------------------------------------------------------------------------- /src/main/java/ma/inpt/rentingCarApp/controllers/EmployeeController.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labrijisaad/Car_Renting_Application_with_Spring-Boot/HEAD/src/main/java/ma/inpt/rentingCarApp/controllers/EmployeeController.java -------------------------------------------------------------------------------- /src/main/java/ma/inpt/rentingCarApp/controllers/ErrorPagesController.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labrijisaad/Car_Renting_Application_with_Spring-Boot/HEAD/src/main/java/ma/inpt/rentingCarApp/controllers/ErrorPagesController.java -------------------------------------------------------------------------------- /src/main/java/ma/inpt/rentingCarApp/controllers/HomeController.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labrijisaad/Car_Renting_Application_with_Spring-Boot/HEAD/src/main/java/ma/inpt/rentingCarApp/controllers/HomeController.java -------------------------------------------------------------------------------- /src/main/java/ma/inpt/rentingCarApp/controllers/SecurityController.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labrijisaad/Car_Renting_Application_with_Spring-Boot/HEAD/src/main/java/ma/inpt/rentingCarApp/controllers/SecurityController.java -------------------------------------------------------------------------------- /src/main/java/ma/inpt/rentingCarApp/controllers/UserController.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labrijisaad/Car_Renting_Application_with_Spring-Boot/HEAD/src/main/java/ma/inpt/rentingCarApp/controllers/UserController.java -------------------------------------------------------------------------------- /src/main/java/ma/inpt/rentingCarApp/entities/Car.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labrijisaad/Car_Renting_Application_with_Spring-Boot/HEAD/src/main/java/ma/inpt/rentingCarApp/entities/Car.java -------------------------------------------------------------------------------- /src/main/java/ma/inpt/rentingCarApp/entities/Notification.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labrijisaad/Car_Renting_Application_with_Spring-Boot/HEAD/src/main/java/ma/inpt/rentingCarApp/entities/Notification.java -------------------------------------------------------------------------------- /src/main/java/ma/inpt/rentingCarApp/entities/User.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labrijisaad/Car_Renting_Application_with_Spring-Boot/HEAD/src/main/java/ma/inpt/rentingCarApp/entities/User.java -------------------------------------------------------------------------------- /src/main/java/ma/inpt/rentingCarApp/security/CurrentUserFinder.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labrijisaad/Car_Renting_Application_with_Spring-Boot/HEAD/src/main/java/ma/inpt/rentingCarApp/security/CurrentUserFinder.java -------------------------------------------------------------------------------- /src/main/java/ma/inpt/rentingCarApp/security/SecurityConfiguration.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labrijisaad/Car_Renting_Application_with_Spring-Boot/HEAD/src/main/java/ma/inpt/rentingCarApp/security/SecurityConfiguration.java -------------------------------------------------------------------------------- /src/main/java/ma/inpt/rentingCarApp/security/SecurityContext.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labrijisaad/Car_Renting_Application_with_Spring-Boot/HEAD/src/main/java/ma/inpt/rentingCarApp/security/SecurityContext.java -------------------------------------------------------------------------------- /src/main/java/ma/inpt/rentingCarApp/services/CarService.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labrijisaad/Car_Renting_Application_with_Spring-Boot/HEAD/src/main/java/ma/inpt/rentingCarApp/services/CarService.java -------------------------------------------------------------------------------- /src/main/java/ma/inpt/rentingCarApp/services/NotificationService.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labrijisaad/Car_Renting_Application_with_Spring-Boot/HEAD/src/main/java/ma/inpt/rentingCarApp/services/NotificationService.java -------------------------------------------------------------------------------- /src/main/java/ma/inpt/rentingCarApp/services/UserService.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labrijisaad/Car_Renting_Application_with_Spring-Boot/HEAD/src/main/java/ma/inpt/rentingCarApp/services/UserService.java -------------------------------------------------------------------------------- /src/main/java/ma/inpt/rentingCarApp/utils/DateTracker.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labrijisaad/Car_Renting_Application_with_Spring-Boot/HEAD/src/main/java/ma/inpt/rentingCarApp/utils/DateTracker.java -------------------------------------------------------------------------------- /src/main/java/ma/inpt/rentingCarApp/utils/FineCalculator.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labrijisaad/Car_Renting_Application_with_Spring-Boot/HEAD/src/main/java/ma/inpt/rentingCarApp/utils/FineCalculator.java -------------------------------------------------------------------------------- /src/main/java/ma/inpt/rentingCarApp/utils/ListInStringConverter.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labrijisaad/Car_Renting_Application_with_Spring-Boot/HEAD/src/main/java/ma/inpt/rentingCarApp/utils/ListInStringConverter.java -------------------------------------------------------------------------------- /src/main/java/ma/inpt/rentingCarApp/utils/MidnightApplicationRefresh.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labrijisaad/Car_Renting_Application_with_Spring-Boot/HEAD/src/main/java/ma/inpt/rentingCarApp/utils/MidnightApplicationRefresh.java -------------------------------------------------------------------------------- /src/main/resources/application.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labrijisaad/Car_Renting_Application_with_Spring-Boot/HEAD/src/main/resources/application.properties -------------------------------------------------------------------------------- /src/main/resources/static/CSS/account-layout.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labrijisaad/Car_Renting_Application_with_Spring-Boot/HEAD/src/main/resources/static/CSS/account-layout.css -------------------------------------------------------------------------------- /src/main/resources/static/CSS/security-layout.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labrijisaad/Car_Renting_Application_with_Spring-Boot/HEAD/src/main/resources/static/CSS/security-layout.css -------------------------------------------------------------------------------- /src/main/resources/static/Images/payment-icons.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labrijisaad/Car_Renting_Application_with_Spring-Boot/HEAD/src/main/resources/static/Images/payment-icons.png -------------------------------------------------------------------------------- /src/main/resources/static/Images/payment.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labrijisaad/Car_Renting_Application_with_Spring-Boot/HEAD/src/main/resources/static/Images/payment.png -------------------------------------------------------------------------------- /src/main/resources/static/Images/road.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labrijisaad/Car_Renting_Application_with_Spring-Boot/HEAD/src/main/resources/static/Images/road.jpg -------------------------------------------------------------------------------- /src/main/resources/templates/admin/admin-account-settings-saved.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labrijisaad/Car_Renting_Application_with_Spring-Boot/HEAD/src/main/resources/templates/admin/admin-account-settings-saved.html -------------------------------------------------------------------------------- /src/main/resources/templates/admin/admin-confirm-account-settings.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labrijisaad/Car_Renting_Application_with_Spring-Boot/HEAD/src/main/resources/templates/admin/admin-confirm-account-settings.html -------------------------------------------------------------------------------- /src/main/resources/templates/admin/admin-home.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labrijisaad/Car_Renting_Application_with_Spring-Boot/HEAD/src/main/resources/templates/admin/admin-home.html -------------------------------------------------------------------------------- /src/main/resources/templates/admin/admin-manage-account.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labrijisaad/Car_Renting_Application_with_Spring-Boot/HEAD/src/main/resources/templates/admin/admin-manage-account.html -------------------------------------------------------------------------------- /src/main/resources/templates/admin/admin-manage-accounts.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labrijisaad/Car_Renting_Application_with_Spring-Boot/HEAD/src/main/resources/templates/admin/admin-manage-accounts.html -------------------------------------------------------------------------------- /src/main/resources/templates/employee/employee-car-deleted.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labrijisaad/Car_Renting_Application_with_Spring-Boot/HEAD/src/main/resources/templates/employee/employee-car-deleted.html -------------------------------------------------------------------------------- /src/main/resources/templates/employee/employee-car-information-changed.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labrijisaad/Car_Renting_Application_with_Spring-Boot/HEAD/src/main/resources/templates/employee/employee-car-information-changed.html -------------------------------------------------------------------------------- /src/main/resources/templates/employee/employee-car-saved.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labrijisaad/Car_Renting_Application_with_Spring-Boot/HEAD/src/main/resources/templates/employee/employee-car-saved.html -------------------------------------------------------------------------------- /src/main/resources/templates/employee/employee-cars-returned.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labrijisaad/Car_Renting_Application_with_Spring-Boot/HEAD/src/main/resources/templates/employee/employee-cars-returned.html -------------------------------------------------------------------------------- /src/main/resources/templates/employee/employee-change-car-info.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labrijisaad/Car_Renting_Application_with_Spring-Boot/HEAD/src/main/resources/templates/employee/employee-change-car-info.html -------------------------------------------------------------------------------- /src/main/resources/templates/employee/employee-confirm-order.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labrijisaad/Car_Renting_Application_with_Spring-Boot/HEAD/src/main/resources/templates/employee/employee-confirm-order.html -------------------------------------------------------------------------------- /src/main/resources/templates/employee/employee-confirm-returned-cars.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labrijisaad/Car_Renting_Application_with_Spring-Boot/HEAD/src/main/resources/templates/employee/employee-confirm-returned-cars.html -------------------------------------------------------------------------------- /src/main/resources/templates/employee/employee-delete-car.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labrijisaad/Car_Renting_Application_with_Spring-Boot/HEAD/src/main/resources/templates/employee/employee-delete-car.html -------------------------------------------------------------------------------- /src/main/resources/templates/employee/employee-home.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labrijisaad/Car_Renting_Application_with_Spring-Boot/HEAD/src/main/resources/templates/employee/employee-home.html -------------------------------------------------------------------------------- /src/main/resources/templates/employee/employee-new-car.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labrijisaad/Car_Renting_Application_with_Spring-Boot/HEAD/src/main/resources/templates/employee/employee-new-car.html -------------------------------------------------------------------------------- /src/main/resources/templates/employee/employee-order-saved.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labrijisaad/Car_Renting_Application_with_Spring-Boot/HEAD/src/main/resources/templates/employee/employee-order-saved.html -------------------------------------------------------------------------------- /src/main/resources/templates/employee/employee-orders.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labrijisaad/Car_Renting_Application_with_Spring-Boot/HEAD/src/main/resources/templates/employee/employee-orders.html -------------------------------------------------------------------------------- /src/main/resources/templates/employee/employee-reservation-ready-for-pick-up.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labrijisaad/Car_Renting_Application_with_Spring-Boot/HEAD/src/main/resources/templates/employee/employee-reservation-ready-for-pick-up.html -------------------------------------------------------------------------------- /src/main/resources/templates/employee/employee-reservations.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labrijisaad/Car_Renting_Application_with_Spring-Boot/HEAD/src/main/resources/templates/employee/employee-reservations.html -------------------------------------------------------------------------------- /src/main/resources/templates/employee/employee-returned-cars.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labrijisaad/Car_Renting_Application_with_Spring-Boot/HEAD/src/main/resources/templates/employee/employee-returned-cars.html -------------------------------------------------------------------------------- /src/main/resources/templates/employee/employee-show-cars.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labrijisaad/Car_Renting_Application_with_Spring-Boot/HEAD/src/main/resources/templates/employee/employee-show-cars.html -------------------------------------------------------------------------------- /src/main/resources/templates/employee/employee-show-user-info.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labrijisaad/Car_Renting_Application_with_Spring-Boot/HEAD/src/main/resources/templates/employee/employee-show-user-info.html -------------------------------------------------------------------------------- /src/main/resources/templates/employee/employee-show-users.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labrijisaad/Car_Renting_Application_with_Spring-Boot/HEAD/src/main/resources/templates/employee/employee-show-users.html -------------------------------------------------------------------------------- /src/main/resources/templates/error-pages/400-error.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labrijisaad/Car_Renting_Application_with_Spring-Boot/HEAD/src/main/resources/templates/error-pages/400-error.html -------------------------------------------------------------------------------- /src/main/resources/templates/error-pages/403-error.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labrijisaad/Car_Renting_Application_with_Spring-Boot/HEAD/src/main/resources/templates/error-pages/403-error.html -------------------------------------------------------------------------------- /src/main/resources/templates/error-pages/404-error.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labrijisaad/Car_Renting_Application_with_Spring-Boot/HEAD/src/main/resources/templates/error-pages/404-error.html -------------------------------------------------------------------------------- /src/main/resources/templates/error-pages/408-error.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labrijisaad/Car_Renting_Application_with_Spring-Boot/HEAD/src/main/resources/templates/error-pages/408-error.html -------------------------------------------------------------------------------- /src/main/resources/templates/error-pages/500-error.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labrijisaad/Car_Renting_Application_with_Spring-Boot/HEAD/src/main/resources/templates/error-pages/500-error.html -------------------------------------------------------------------------------- /src/main/resources/templates/error-pages/502-error.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labrijisaad/Car_Renting_Application_with_Spring-Boot/HEAD/src/main/resources/templates/error-pages/502-error.html -------------------------------------------------------------------------------- /src/main/resources/templates/error-pages/503-error.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labrijisaad/Car_Renting_Application_with_Spring-Boot/HEAD/src/main/resources/templates/error-pages/503-error.html -------------------------------------------------------------------------------- /src/main/resources/templates/error-pages/504-error.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labrijisaad/Car_Renting_Application_with_Spring-Boot/HEAD/src/main/resources/templates/error-pages/504-error.html -------------------------------------------------------------------------------- /src/main/resources/templates/page-layout.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labrijisaad/Car_Renting_Application_with_Spring-Boot/HEAD/src/main/resources/templates/page-layout.html -------------------------------------------------------------------------------- /src/main/resources/templates/security/account-created.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labrijisaad/Car_Renting_Application_with_Spring-Boot/HEAD/src/main/resources/templates/security/account-created.html -------------------------------------------------------------------------------- /src/main/resources/templates/security/login.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labrijisaad/Car_Renting_Application_with_Spring-Boot/HEAD/src/main/resources/templates/security/login.html -------------------------------------------------------------------------------- /src/main/resources/templates/security/logout.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labrijisaad/Car_Renting_Application_with_Spring-Boot/HEAD/src/main/resources/templates/security/logout.html -------------------------------------------------------------------------------- /src/main/resources/templates/security/register.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labrijisaad/Car_Renting_Application_with_Spring-Boot/HEAD/src/main/resources/templates/security/register.html -------------------------------------------------------------------------------- /src/main/resources/templates/user/user-FAQ.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labrijisaad/Car_Renting_Application_with_Spring-Boot/HEAD/src/main/resources/templates/user/user-FAQ.html -------------------------------------------------------------------------------- /src/main/resources/templates/user/user-browse-cars.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labrijisaad/Car_Renting_Application_with_Spring-Boot/HEAD/src/main/resources/templates/user/user-browse-cars.html -------------------------------------------------------------------------------- /src/main/resources/templates/user/user-car-can-not-be-extended.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labrijisaad/Car_Renting_Application_with_Spring-Boot/HEAD/src/main/resources/templates/user/user-car-can-not-be-extended.html -------------------------------------------------------------------------------- /src/main/resources/templates/user/user-car-extended.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labrijisaad/Car_Renting_Application_with_Spring-Boot/HEAD/src/main/resources/templates/user/user-car-extended.html -------------------------------------------------------------------------------- /src/main/resources/templates/user/user-do-payment.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labrijisaad/Car_Renting_Application_with_Spring-Boot/HEAD/src/main/resources/templates/user/user-do-payment.html -------------------------------------------------------------------------------- /src/main/resources/templates/user/user-home.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labrijisaad/Car_Renting_Application_with_Spring-Boot/HEAD/src/main/resources/templates/user/user-home.html -------------------------------------------------------------------------------- /src/main/resources/templates/user/user-pay-fine.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labrijisaad/Car_Renting_Application_with_Spring-Boot/HEAD/src/main/resources/templates/user/user-pay-fine.html -------------------------------------------------------------------------------- /src/main/resources/templates/user/user-pay-reservation.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labrijisaad/Car_Renting_Application_with_Spring-Boot/HEAD/src/main/resources/templates/user/user-pay-reservation.html -------------------------------------------------------------------------------- /src/main/resources/templates/user/user-your-cars.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labrijisaad/Car_Renting_Application_with_Spring-Boot/HEAD/src/main/resources/templates/user/user-your-cars.html -------------------------------------------------------------------------------- /src/main/resources/templates/user/user-your-reservations.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labrijisaad/Car_Renting_Application_with_Spring-Boot/HEAD/src/main/resources/templates/user/user-your-reservations.html -------------------------------------------------------------------------------- /src/test/java/com/example/car_renting_application_with_springboot/CarRentingApplicationWithSpringBootApplicationTests.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labrijisaad/Car_Renting_Application_with_Spring-Boot/HEAD/src/test/java/com/example/car_renting_application_with_springboot/CarRentingApplicationWithSpringBootApplicationTests.java --------------------------------------------------------------------------------