btcpayserver/BTCPayServer/Views/UICustodianAccounts/CreateCustodianAccount.cshtml
Wouter Samaey c71e671311
Added custodian account trade support (#3978)
* Added custodian account trade support

* UI updates

* Improved UI spacing and field sizes + Fixed input validation

* Reset error message when opening trade modal

* Better error handing + test + surface error in trade modal in UI

* Add delete confirmation modal

* Fixed duplicate ID in site nav

* Replace jQuery.ajax with fetch for onTradeSubmit

* Added support for minimumTradeQty to trading pairs

* Fixed LocalBTCPayServerClient after previous refactoring

* Handling dust amounts + minor API change

* Replaced jQuery with Fetch API + UX improvements + more TODOs

* Moved namespace because Rider was unhappy

* Major UI improvements when swapping or changing assets, fixed bugs in min trade qty, fixed initial qty after an asset change etc

* Commented out code for easier debugging

* Fixed missing default values

Co-authored-by: Dennis Reimann <mail@dennisreimann.de>
2022-08-04 11:38:49 +09:00

62 lines
2.4 KiB
Plaintext

@using BTCPayServer.Views.Apps
@using BTCPayServer.Abstractions.Extensions
@model BTCPayServer.Models.CustodianAccountViewModels.CreateCustodianAccountViewModel
@{
ViewData.SetActivePage(AppsNavPages.Create, "Add a custodian account");
}
@section PageFootContent {
<partial name="_ValidationScriptsPartial" />
}
<partial name="_StatusMessage" />
<h2 class="mt-1 mb-4">@ViewData["Title"]</h2>
<div class="row">
<div class="col-xl-8 col-xxl-constrain">
<form asp-action="CreateCustodianAccount">
@if (!ViewContext.ModelState.IsValid)
{
<div asp-validation-summary="ModelOnly" class="text-danger"></div>
}
@if (!string.IsNullOrEmpty(Model.SelectedCustodian))
{
<partial name="_FormTopMessages" model="Model.ConfigForm" />
}
else if(Model.Custodians.Count() > 0)
{
<div class="form-group">
<label asp-for="SelectedCustodian" class="form-label" data-required></label>
<select asp-for="SelectedCustodian" asp-items="Model.Custodians" class="form-select"></select>
</div>
}
else
{
<p>No custodians available. Install some plugins to add custodian / exchange support.</p>
}
@if (!string.IsNullOrEmpty(Model.SelectedCustodian))
{
<div class="form-group">
<label asp-for="SelectedCustodian" class="form-label" data-required></label>
<select disabled asp-for="SelectedCustodian" asp-items="Model.Custodians" class="form-select"></select>
<input type="hidden" asp-for="SelectedCustodian" />
</div>
<div class="form-group">
<label asp-for="Name" class="form-label" data-required></label>
<input asp-for="Name" class="form-control" required/>
<span asp-validation-for="Name" class="text-danger"></span>
</div>
<partial name="_Form" model="Model.ConfigForm" />
}
<div class="form-group mt-4">
<input type="submit" value="Continue" class="btn btn-primary" id="Continue" />
</div>
</form>
</div>
</div>