mirror of
https://github.com/btcpayserver/btcpayserver.git
synced 2025-02-23 22:46:49 +01:00
37 lines
1.2 KiB
Text
37 lines
1.2 KiB
Text
|
@using Microsoft.AspNetCore.Mvc.Rendering
|
||
|
@model UpdateCoinSwitchSettingsViewModel
|
||
|
@{
|
||
|
Layout = "../Shared/_NavLayout.cshtml";
|
||
|
ViewData.SetActivePageAndTitle(StoreNavPages.Index, "Update Store CoinSwitch Settings");
|
||
|
}
|
||
|
|
||
|
<h4>@ViewData["Title"]</h4>
|
||
|
<partial name="_StatusMessage" for="StatusMessage"/>
|
||
|
|
||
|
<div class="row">
|
||
|
<div class="col-md-10">
|
||
|
<form method="post">
|
||
|
<p>
|
||
|
You can obtain a merchant id at
|
||
|
<a href="https://coinswitch.co/?ref=G0UVY10JIE" target="_blank">
|
||
|
https://coinswitch.co
|
||
|
</a>
|
||
|
</p>
|
||
|
<div class="form-group">
|
||
|
<label asp-for="MerchantId"></label>
|
||
|
<input asp-for="MerchantId" class="form-control"/>
|
||
|
<span asp-validation-for="MerchantId" class="text-danger"></span>
|
||
|
</div>
|
||
|
<div class="form-group">
|
||
|
<label asp-for="Enabled"></label>
|
||
|
<input asp-for="Enabled" type="checkbox" class="form-check"/>
|
||
|
</div>
|
||
|
<button name="command" type="submit" value="save" class="btn btn-primary">Submit</button>
|
||
|
</form>
|
||
|
</div>
|
||
|
</div>
|
||
|
|
||
|
@section Scripts {
|
||
|
@await Html.PartialAsync("_ValidationScriptsPartial")
|
||
|
}
|