btcpayserver/BTCPayServer/Views/Stores/_LayoutWalletSetup.cshtml
2021-03-03 22:27:39 +01:00

37 lines
918 B
Plaintext

@{
Layout = "_LayoutSimple";
ViewData["Title"] = ViewData["Title"] ?? "Wallet Setup";
}
@section HeadScripts {
@await RenderSectionAsync("HeadScripts", false)
}
@section HeaderContent {
@await RenderSectionAsync("HeaderContent", false)
<link href="~/main/wallet-setup.css" rel="stylesheet" asp-append-version="true" />
}
@section Scripts {
@await RenderSectionAsync("Scripts", false)
}
<nav id="wizard-navbar">
@RenderSection("Navbar", false)
<a asp-controller="Stores" asp-action="UpdateStore" asp-route-storeId="@Context.GetRouteValue("storeId")" class="cancel">
<vc:icon symbol="close" />
</a>
</nav>
<div class="row justify-content-md-center mt-5 pt-sm-3 pt-md-0">
<main class="col-md-10 col-lg-8 col-xl-7">
@if (TempData.HasStatusMessage())
{
<partial name="_StatusMessage"/>
}
@RenderBody()
</main>
</div>