Skip to content

Commit

Permalink
reorder client information
Browse files Browse the repository at this point in the history
  • Loading branch information
josxha committed Oct 18, 2023
1 parent e19825f commit 60bc7e5
Showing 1 changed file with 35 additions and 35 deletions.
70 changes: 35 additions & 35 deletions OryAdmin/Components/Pages/OAuth2/Clients/View.razor
Original file line number Diff line number Diff line change
Expand Up @@ -119,26 +119,26 @@ else
<div class="modal-background"></div>
<div class="modal-card">
<header class="modal-card-head">
<p class="modal-card-title">New Client Secret generated</p>
</header>
<section class="modal-card-body">
<div class="field">
<label class="label">
New Client Secret:
<div class="control">
<input type="text" class="input" readonly value="@_client?.ClientSecret"/>
</div>
</label>
</div>
<div class="message is-warning p-2 mt-3">
Please store your Client Secret because it can only be viewed once.
</div>
</section>
<footer class="modal-card-foot">
<div class="button is-info" @onclick="() => _showNewSecretModal = false">
Done
<p class="modal-card-title">New Client Secret generated</p>
</header>
<section class="modal-card-body">
<div class="field">
<label class="label">
New Client Secret:
<div class="control">
<input type="text" class="input" readonly value="@_client?.ClientSecret"/>
</div>
</footer>
</label>
</div>
<div class="message is-warning p-2 mt-3">
Please store your Client Secret because it can only be viewed once.
</div>
</section>
<footer class="modal-card-foot">
<div class="button is-info" @onclick="() => _showNewSecretModal = false">
Done
</div>
</footer>
</div>
</div>

Expand Down Expand Up @@ -214,6 +214,22 @@ else
<h1 class="title">OpenID Connect logout</h1>
<table class="table is-fullwidth">
<tbody>
<tr>
<td>Frontchannel Logout Session Required</td>
<td>@(_client.FrontchannelLogoutSessionRequired ? "Yes" : "No")</td>
</tr>
<tr>
<td>Backchannel Logout Session Required</td>
<td>@(_client.BackchannelLogoutSessionRequired ? "Yes" : "No")</td>
</tr>
<tr>
<td>Frontchannel Logout URI</td>
<td>@_client.FrontchannelLogoutUri.ToStringOrDash()</td>
</tr>
<tr>
<td>Backchannel Logout URI</td>
<td>@_client.BackchannelLogoutUri.ToStringOrDash()</td>
</tr>
</tbody>
</table>
</div>
Expand Down Expand Up @@ -334,14 +350,6 @@ else
<td>Allowed CORS Origins</td>
<StringListTd List="@_client.AllowedCorsOrigins"/>
</tr>
<tr>
<td>Backchannel Logout URI</td>
<td>@_client.BackchannelLogoutUri.ToStringOrDash()</td>
</tr>
<tr>
<td>Frontchannel Logout URI</td>
<td>@_client.FrontchannelLogoutUri.ToStringOrDash()</td>
</tr>
<tr>
<td>Registration Access Token</td>
<td>@_client.RegistrationAccessToken.ToStringOrDash()</td>
Expand All @@ -354,14 +362,6 @@ else
<td>Sector Identifier URI</td>
<td>@_client.SectorIdentifierUri.ToStringOrDash()</td>
</tr>
<tr>
<td>Backchannel Logout Session Required</td>
<td>@(_client.BackchannelLogoutSessionRequired ? "Yes" : "No")</td>
</tr>
<tr>
<td>Frontchannel Logout Session Required</td>
<td>@(_client.FrontchannelLogoutSessionRequired ? "Yes" : "No")</td>
</tr>
<tr>
<td>Request Object Signing Algorithm</td>
<td>@_client.RequestObjectSigningAlg.ToStringOrDash()</td>
Expand Down

0 comments on commit 60bc7e5

Please sign in to comment.