Files
btcpayserver/BTCPayServer/Views/Stores/_LayoutWalletSetup.cshtml
d11n b12c4c5fa0 Improve and unify page headers (#2412)
* Improve and unify page headers

* Altcoin test fixes

* Update BTCPayServer/Views/Apps/UpdateCrowdfund.cshtml

Co-authored-by: Andrew Camilleri <evilkukka@gmail.com>

* Update BTCPayServer/Views/Apps/UpdateCrowdfund.cshtml

Co-authored-by: Andrew Camilleri <evilkukka@gmail.com>

* Fix missing store name in pairing view

* Fix CanUsePairing test

* Bump header navigation font size

* Use partial tag instead of Html.PartialAsync in views

As suggested by @nicolasdorier. These are equivalent, see details [here](https://docs.microsoft.com/en-us/aspnet/core/mvc/views/partial?view=aspnetcore-3.1#partial-tag-helper).

* Fix docs link

As in #2432.

* Update BTCPayServer/Views/Wallets/SignWithSeed.cshtml

Co-authored-by: britttttk <39231115+britttttk@users.noreply.github.com>

* Update BTCPayServer/Views/Wallets/WalletSendVault.cshtml

Co-authored-by: britttttk <39231115+britttttk@users.noreply.github.com>

* Update BTCPayServer/Views/Wallets/WalletTransactions.cshtml

Co-authored-by: britttttk <39231115+britttttk@users.noreply.github.com>

Co-authored-by: Andrew Camilleri <evilkukka@gmail.com>
Co-authored-by: britttttk <39231115+britttttk@users.noreply.github.com>
2021-04-08 22:32:42 +09:00

33 lines
792 B
Plaintext

@{
Layout = "_LayoutSimple";
}
@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">
<partial name="_StatusMessage" />
@RenderBody()
</main>
</div>