yavsc/src/Yavsc/Views/Client/Delete.cshtml

70 lines
1.8 KiB
Text
Raw Normal View History

2025-08-19 15:40:16 +01:00
@model Client
@{
ViewData["Title"] = @SR["Delete"];
}
<h2>@SR["Delete"]</h2>
<h3>@SR["AreYourSureYouWantToDeleteThis"]</h3>
<div>
<h4>Client</h4>
<hr />
<dl class="dl-horizontal">
<dt>
2025-08-24 16:07:53 +01:00
@Html.DisplayNameFor(model => model.ClientId)
</dt>
<dt>
@Html.DisplayNameFor(model => model.ClientId)
</dt>
<dt>
@Html.DisplayNameFor(model => model.Enabled)
</dt>
<dt>
@Html.DisplayNameFor(model => model.Enabled)
2025-08-19 15:40:16 +01:00
</dt>
<dt>
2025-08-24 16:07:53 +01:00
@Html.DisplayNameFor(model => model.ClientName)
2025-08-19 15:40:16 +01:00
</dt>
<dd>
2025-08-24 16:07:53 +01:00
@Html.DisplayFor(model => model.ClientName)
2025-08-19 15:40:16 +01:00
</dd>
<dt>
2025-08-24 16:07:53 +01:00
@Html.DisplayNameFor(model => model.FrontChannelLogoutUri)
2025-08-19 15:40:16 +01:00
</dt>
<dd>
2025-08-24 16:07:53 +01:00
@Html.DisplayFor(model => model.FrontChannelLogoutUri)
2025-08-19 15:40:16 +01:00
</dd>
<dt>
2025-08-24 16:07:53 +01:00
@Html.DisplayNameFor(model => model.RedirectUris)
2025-08-19 15:40:16 +01:00
</dt>
<dd>
2025-08-24 16:07:53 +01:00
@Html.DisplayFor(model => model.RedirectUris)
2025-08-19 15:40:16 +01:00
</dd>
<dt>
2025-08-24 16:07:53 +01:00
@Html.DisplayNameFor(model => model.AbsoluteRefreshTokenLifetime)
2025-08-19 15:40:16 +01:00
</dt>
<dd>
2025-08-24 16:07:53 +01:00
@Html.DisplayFor(model => model.AbsoluteRefreshTokenLifetime)
2025-08-19 15:40:16 +01:00
</dd>
<dt>
2025-08-24 16:07:53 +01:00
@Html.DisplayNameFor(model => model.ClientSecrets)
2025-08-19 15:40:16 +01:00
</dt>
<dd>
2025-08-24 16:07:53 +01:00
@Html.DisplayFor(model => model.ClientSecrets)
2025-08-19 15:40:16 +01:00
</dd>
<dt>
2025-08-24 16:07:53 +01:00
@Html.DisplayNameFor(model => model.AccessTokenType)
2025-08-19 15:40:16 +01:00
</dt>
<dd>
2025-08-24 16:07:53 +01:00
@Html.DisplayFor(model => model.AccessTokenType)
2025-08-19 15:40:16 +01:00
</dd>
</dl>
<form asp-action="Delete">
<div class="form-actions no-color">
<input type="submit" value="Delete" class="btn btn-default" /> |
<a asp-action="Index">@SR["Back to List"]</a>
</div>
</form>
</div>