btcpayserver/BTCPayServer/Views/Wallets/WalletPSBT.cshtml

76 lines
3.8 KiB
Text
Raw Normal View History

2019-05-11 00:29:29 +09:00
@model WalletPSBTViewModel
@{
Layout = "../Shared/_NavLayout.cshtml";
ViewData["Title"] = "PSBT";
ViewData.SetActivePageAndTitle(WalletsNavPages.PSBT);
}
2019-05-12 13:13:52 +09:00
<div class="row">
<div class="col-md-10 text-center">
<partial name="_StatusMessage" for="@TempData["TempDataProperty-StatusMessage"]" />
</div>
</div>
2019-05-11 00:29:29 +09:00
<div class="row">
<div class="col-md-10">
@if (Model.Errors != null && Model.Errors.Count != 0)
{
<div class="alert alert-danger alert-dismissible" role="alert">
<button type="button" class="close" data-dismiss="alert" aria-label="Close"><span aria-hidden="true">&times;</span></button>
@foreach (var error in Model.Errors)
{
<span>@error</span><br />
}
</div>
}
2019-05-11 00:29:29 +09:00
@if (!string.IsNullOrEmpty(Model.Decoded))
{
<h3>Decoded PSBT</h3>
2019-05-11 20:26:31 +09:00
<div class="form-group">
2019-05-12 13:13:52 +09:00
<form method="post" asp-action="WalletPSBT">
<input type="hidden" asp-for="PSBT" />
<input type="hidden" asp-for="FileName" />
2019-05-30 23:36:01 +09:00
<div class="dropdown d-inline-block" style="margin-top:16px;">
<button class="btn btn-primary dropdown-toggle" type="button" id="SendMenu" data-toggle="dropdown" aria-haspopup="true" aria-expanded="false">
Sign with...
</button>
2019-05-11 20:26:31 +09:00
<div class="dropdown-menu" aria-labelledby="SendMenu">
<button name="command" type="submit" class="dropdown-item" value="ledger">... your Ledger Wallet device</button>
<button name="command" type="submit" class="dropdown-item" value="seed">... an HD private key or mnemonic seed</button>
<button name="command" type="submit" class="dropdown-item" value="save-psbt">... a wallet supporting PSBT (save as file)</button>
2019-05-11 20:26:31 +09:00
</div>
</div>
2019-05-30 23:36:01 +09:00
<div class="dropdown d-inline-block">
<button class="btn btn-secondary dropdown-toggle" type="button" id="OtherActions" data-toggle="dropdown" aria-haspopup="true" aria-expanded="false">
Other actions...
</button>
<div class="dropdown-menu" aria-labelledby="OtherActions">
2019-05-30 23:36:01 +09:00
<button name="command" type="submit" class="dropdown-item" value="broadcast">Review</button>
<button name="command" type="submit" class="dropdown-item" value="update">Update</button>
<button name="command" type="submit" class="dropdown-item" value="combine">Combine</button>
</div>
</div>
</form>
2019-05-11 20:26:31 +09:00
</div>
2019-05-12 14:51:24 +09:00
<pre><code class="json">@Model.Decoded</code></pre>
2019-05-11 00:29:29 +09:00
}
<h3>PSBT to decode</h3>
<form class="form-group" method="post" asp-action="WalletPSBT" enctype="multipart/form-data">
2019-05-11 00:29:29 +09:00
<div class="form-group">
<textarea class="form-control" rows="5" asp-for="PSBT"></textarea>
<span asp-validation-for="PSBT" class="text-danger"></span>
</div>
<div class="form-group">
<label asp-for="UploadedPSBTFile"></label>
<input type="file" class="form-control-file" asp-for="UploadedPSBTFile">
</div>
2019-05-11 00:29:29 +09:00
<button type="submit" class="btn btn-primary">Decode</button>
</form>
</div>
</div>
@section Scripts {
<link rel="stylesheet" href="~/vendor/highlightjs/default.min.css">
<script src="~/vendor/highlightjs/highlight.min.js"></script>
<script>hljs.initHighlightingOnLoad();</script>
}