Browse Source
bug: fix identity server profile page showing client secret label as "Client id" (#610)
pull/611/head
Alastair Crabtree
5 years ago
committed by
GitHub
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with
3 additions and
3 deletions
-
backend/src/Squidex/Areas/IdentityServer/Views/Profile/Profile.cshtml
|
|
@ -198,14 +198,14 @@ |
|
|
|
|
|
|
|
|
<div class="row no-gutters form-group"> |
|
|
<div class="row no-gutters form-group"> |
|
|
<div class="col-8"> |
|
|
<div class="col-8"> |
|
|
<label for="clientId">Client Id</label> |
|
|
<label for="clientId">@T.Get("common.clientId")</label> |
|
|
|
|
|
|
|
|
<input class="form-control" name="clientId" id="clientId" readonly value="@Model.Id" /> |
|
|
<input class="form-control" name="clientId" id="clientId" readonly value="@Model.Id" /> |
|
|
</div> |
|
|
</div> |
|
|
</div> |
|
|
</div> |
|
|
<div class="row no-gutters form-group"> |
|
|
<div class="row no-gutters form-group"> |
|
|
<div class="col-8"> |
|
|
<div class="col-8"> |
|
|
<label for="clientSecret">@T.Get("common.clientId")</label> |
|
|
<label for="clientSecret">@T.Get("common.clientSecret")</label> |
|
|
|
|
|
|
|
|
<input class="form-control" name="clientSecret" id="clientSecret" readonly value="@Model.ClientSecret" /> |
|
|
<input class="form-control" name="clientSecret" id="clientSecret" readonly value="@Model.ClientSecret" /> |
|
|
</div> |
|
|
</div> |
|
|
|