mirror of
https://github.com/btcpayserver/btcpayserver.git
synced 2025-02-23 22:46:49 +01:00
* Store selector * Footer * Notifications * Checkout Appearance * Users list * Forms * Emails * Pay Button * Edit Dictionary * Remove newlines, fix typos * Forms * Pull payments and payouts * Various pages * Use local docs link * Fix * Even more translations * Fixes #6325 * Account pages * Notifications * Placeholders * Various pages and components * Add more
23 lines
547 B
Text
23 lines
547 B
Text
@{
|
|
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"/>
|