2019-05-12 13:13:52 +09:00
|
|
|
@model WalletPSBTCombineViewModel
|
|
|
|
@{
|
|
|
|
Layout = "../Shared/_NavLayout.cshtml";
|
2021-04-08 15:32:42 +02:00
|
|
|
ViewData.SetActivePageAndTitle(WalletsNavPages.PSBT, "Combine PSBT", Context.GetStoreData().StoreName);
|
2019-05-12 13:13:52 +09:00
|
|
|
}
|
|
|
|
|
|
|
|
<div class="row">
|
|
|
|
<div class="col-md-10">
|
2021-04-08 15:32:42 +02:00
|
|
|
<h4 class="mb-3">@ViewData["PageTitle"]</h4>
|
|
|
|
|
2019-05-19 23:27:18 +09:00
|
|
|
<form class="form-group" method="post" asp-action="WalletPSBTCombine" enctype="multipart/form-data">
|
2021-04-08 15:32:42 +02:00
|
|
|
<input type="hidden" asp-for="OtherPSBT"/>
|
2019-05-12 13:13:52 +09:00
|
|
|
<div class="form-group">
|
2021-05-19 04:39:27 +02:00
|
|
|
<label asp-for="PSBT" class="form-label"></label>
|
2019-05-12 13:13:52 +09:00
|
|
|
<textarea class="form-control" rows="5" asp-for="PSBT"></textarea>
|
|
|
|
<span asp-validation-for="PSBT" class="text-danger"></span>
|
|
|
|
</div>
|
|
|
|
<div class="form-group">
|
2021-05-19 04:39:27 +02:00
|
|
|
<label asp-for="UploadedPSBTFile" class="form-label"></label>
|
|
|
|
<input type="file" class="form-control" asp-for="UploadedPSBTFile">
|
2019-05-12 13:13:52 +09:00
|
|
|
</div>
|
|
|
|
<button type="submit" class="btn btn-primary">Combine</button>
|
|
|
|
</form>
|
|
|
|
</div>
|
|
|
|
</div>
|