mirror of
https://github.com/aljazceru/btcpayserver.git
synced 2025-12-31 12:44:29 +01:00
* Use Blazor for the Vault code * Put elements in different file * Controller abstraction * Break into VaultElement
29 lines
720 B
Plaintext
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>
|
|
}
|