mirror of
https://github.com/btcpayserver/btcpayserver.git
synced 2024-11-19 18:11:36 +01:00
3c0292f074
* Refactoring to generalize wizard layout * Wallet: Add intermediate signing options view * Update BTCPayServer/Views/Wallets/WalletSigningOptions.cshtml Co-authored-by: britttttk <39231115+britttttk@users.noreply.github.com> * Skip signing options for hot wallets * Update signing options wordings, add PSBT doc link * Fix test * Remove form route params * Use decode command for PSBT Co-authored-by: britttttk <39231115+britttttk@users.noreply.github.com>
27 lines
570 B
Plaintext
27 lines
570 B
Plaintext
@{
|
|
Layout = "_LayoutSimple";
|
|
}
|
|
|
|
@section PageHeadContent {
|
|
<link href="~/main/wizard.css" rel="stylesheet" asp-append-version="true" />
|
|
@await RenderSectionAsync("PageHeadContent", false)
|
|
}
|
|
|
|
@section PageFootContent {
|
|
@await RenderSectionAsync("PageFootContent", false)
|
|
}
|
|
|
|
<nav id="wizard-navbar">
|
|
@await RenderSectionAsync("Navbar", false)
|
|
</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>
|
|
|
|
|
|
|