mirror of
https://github.com/btcpayserver/btcpayserver.git
synced 2025-02-24 06:47:50 +01:00
* Move TagHelpers to Abstractions Makes them available for use in plugins. Also cleans up the tag helper references in the view code: As we have it in the root view imports, the individual directives in the views are superfluous. * Move CurrenciesSuggestionsTagHelper back To get rid of the Rating dependency in Abstractions.
36 lines
1.2 KiB
Text
36 lines
1.2 KiB
Text
@using BTCPayServer.Views.Apps
|
|
@using BTCPayServer.Abstractions.Extensions
|
|
@model BTCPayServer.Models.CustodianAccountViewModels.EditCustodianAccountViewModel
|
|
@{
|
|
ViewData.SetActivePage(AppsNavPages.Update, "Edit 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="EditCustodianAccount">
|
|
<div asp-validation-summary="ModelOnly" class="text-danger"></div>
|
|
|
|
<partial name="_FormTopMessages" model="Model.ConfigForm"/>
|
|
|
|
<div class="form-group">
|
|
<label asp-for="CustodianAccount.Name" class="form-label" data-required></label>
|
|
<input asp-for="CustodianAccount.Name" class="form-control" required/>
|
|
<span asp-validation-for="CustodianAccount.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="Save"/>
|
|
</div>
|
|
</form>
|
|
</div>
|
|
</div>
|