Skip to content

Commit

Permalink
update successful payment url
Browse files Browse the repository at this point in the history
  • Loading branch information
Mehedihasan444 committed Sep 10, 2024
1 parent 0a3f676 commit 936fe96
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions dist/app/modules/payment/payment.controller.js
Original file line number Diff line number Diff line change
Expand Up @@ -81,7 +81,7 @@ const paymentConfirmation = (req, res) => __awaiter(void 0, void 0, void 0, func
<div class="container">
<h1>Payment Success</h1>
<p>Thank you for your payment! Your transaction has been successfully completed.</p>
<a href="http://localhost:5173/" class="button">Go to Home</a>
<a href="https://car-rental-reservation-system-frontend-tau.vercel.app/" class="button">Go to Home</a>
</div>
</body>
</html>
Expand Down Expand Up @@ -136,7 +136,7 @@ const paymentFailed = (req, res) => __awaiter(void 0, void 0, void 0, function*
<div class="container">
<h1>Payment Failed</h1>
<p>We're sorry, but your payment could not be processed. Please try again.</p>
<a href="http://localhost:5173/dashboard/user/payment-management" class="button">Retry Payment</a>
<a href="https://car-rental-reservation-system-frontend-tau.vercel.app/dashboard/user/payment-management" class="button">Retry Payment</a>
</div>
</body>
</html>
Expand Down
4 changes: 2 additions & 2 deletions src/app/modules/payment/payment.controller.ts
Original file line number Diff line number Diff line change
Expand Up @@ -73,7 +73,7 @@ const paymentConfirmation = async (req: Request, res: Response) => {
<div class="container">
<h1>Payment Success</h1>
<p>Thank you for your payment! Your transaction has been successfully completed.</p>
<a href="http://localhost:5173/" class="button">Go to Home</a>
<a href="https://car-rental-reservation-system-frontend-tau.vercel.app/" class="button">Go to Home</a>
</div>
</body>
</html>
Expand Down Expand Up @@ -130,7 +130,7 @@ const paymentFailed = async (req: Request, res: Response) => {
<div class="container">
<h1>Payment Failed</h1>
<p>We're sorry, but your payment could not be processed. Please try again.</p>
<a href="http://localhost:5173/dashboard/user/payment-management" class="button">Retry Payment</a>
<a href="https://car-rental-reservation-system-frontend-tau.vercel.app/dashboard/user/payment-management" class="button">Retry Payment</a>
</div>
</body>
</html>
Expand Down

0 comments on commit 936fe96

Please sign in to comment.