Browse Source
* Cleaning up routes. * Adding signout functionality * Added simple checkout behaviormain
committed by
GitHub
10 changed files with 122 additions and 83 deletions
@ -0,0 +1,16 @@ |
|||
@using Microsoft.eShopWeb.ViewModels |
|||
@{ |
|||
ViewData["Title"] = "Checkout Complete"; |
|||
@model BasketViewModel |
|||
} |
|||
<section class="esh-catalog-hero"> |
|||
<div class="container"> |
|||
<img class="esh-catalog-title" src="../images/main_banner_text.png" /> |
|||
</div> |
|||
</section> |
|||
|
|||
<div class="container"> |
|||
<h1>Thanks for your Order!</h1> |
|||
|
|||
<a asp-controller="Catalog" asp-action="Index">Continue Shopping...</a> |
|||
</div> |
|||
Loading…
Reference in new issue