btcpayserver/BTCPayServer/Views/UIStores/_LayoutWalletSetup.cshtml
d11n 181d4d5ea4
Improve wallet nav (#3921)
* Fix rescan nav highlighting

* Wallet send wizard

* Wallet receive wizard

* Consistent wizard back button behaviour
2022-07-04 13:20:08 +09:00

22 lines
464 B
Plaintext

@{
Layout = "_LayoutWizard";
}
@section PageHeadContent {
@await RenderSectionAsync("PageHeadContent", false)
}
@section PageFootContent {
@await RenderSectionAsync("PageFootContent", false)
}
@section Navbar {
@await RenderSectionAsync("Navbar", false)
<a asp-controller="UIStores" asp-action="Dashboard" asp-route-storeId="@Context.GetRouteValue("storeId")" class="cancel">
<vc:icon symbol="close" />
</a>
}
@RenderBody()