btcpayserver/BTCPayServer/Views/Stores/ShowToken.cshtml
dstrukt 03f8d6693d
Improve Access Tokens View (#3118)
Co-authored-by: Dennis Reimann <mail@dennisreimann.de>
2021-11-18 10:04:20 +01:00

27 lines
724 B
Text

@model BTCPayServer.Security.Bitpay.BitTokenEntity
@{
Layout = "../Shared/_NavLayout.cshtml";
ViewData.SetActivePageAndTitle(StoreNavPages.Tokens, "Access Tokens", Context.GetStoreData().StoreName);
}
<h3 class="mb-4">@ViewData["PageTitle"]</h3>
<div class="row">
<div class="col-md-8">
<h5>Token Information</h5>
<table class="table table-hover">
<tr>
<th>Label</th>
<td>@Model.Label</td>
</tr>
<tr>
<th>SIN</th>
<td>@Model.SIN</td>
</tr>
<tr>
<th>Token</th>
<td>@Model.Value</td>
</tr>
</table>
</div>
</div>