forked from bhrugen/Bulky
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
3 changed files
with
90 additions
and
2 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
16 changes: 16 additions & 0 deletions
16
BulkyBookWeb/Areas/Admin/Views/Order/PaymentConfirmation.cshtml
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,16 @@ | ||
@model int | ||
|
||
<div class="container row pt-4"> | ||
<div class="col-12 text-center"> | ||
<h1 class="text-primary text-center">Payment Successfully!</h1> | ||
Order Number : @Model <br /><br /> | ||
<img src="~/images/lawn_leaf.jpg" width="65%" /> | ||
</div> | ||
<div class="col-12 text-center" style="color:maroon"> | ||
<br /> | ||
Payment has been applied successfully! <br /> | ||
<a asp-area="Admin" asp-controller="Order" asp-action="Details" asp-route-orderId="@Model" class="btn btn-primary">Back to Order Details</a> | ||
|
||
</div> | ||
</div> | ||
|