Files
btcpayserver/BTCPayServer/Views/UIStores/_LayoutWalletSetup.cshtml
Nicolas Dorier 2f26979ed7 Refactor vault (#6678)
* Use Blazor for the Vault code

* Put elements in different file

* Controller abstraction

* Break into VaultElement
2025-04-21 17:09:46 +09:00

29 lines
720 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="cross" />
</a>
}
@RenderBody()
<vc:ui-extension-point location="onchain-wallet-setup-post-body" model="@Model"/>
@if (User.Identity.IsAuthenticated && ViewData.IsBlazorAllowed())
{
<script src="~/_framework/blazor.server.js" autostart="false" asp-append-version="true"></script>
}