mirror of
https://github.com/btcpayserver/btcpayserver.git
synced 2024-11-19 18:11:36 +01:00
67 lines
2.5 KiB
Plaintext
67 lines
2.5 KiB
Plaintext
@using BTCPayServer.Abstractions.Extensions
|
|
@using BTCPayServer.Views.CustodianAccounts
|
|
@using Microsoft.AspNetCore.Mvc.TagHelpers
|
|
@model BTCPayServer.Models.CustodianAccountViewModels.CreateCustodianAccountViewModel
|
|
@{
|
|
ViewData.SetActivePage( CustodianAccountsNavPages.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">
|
|
<input asp-for="Config" type="hidden" />
|
|
@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" />
|
|
}
|
|
|
|
@if (Model.Custodians.Count() > 0)
|
|
{
|
|
<div class="form-group mt-4">
|
|
<input type="submit" value="Continue" class="btn btn-primary" id="Continue"/>
|
|
</div>
|
|
}
|
|
</form>
|
|
</div>
|
|
</div>
|