mirror of
https://github.com/simple-login/app.git
synced 2024-11-16 08:58:30 +01:00
add "disabled" to client-id, client-secret
This commit is contained in:
parent
fc73267b53
commit
5244678a16
1 changed files with 2 additions and 2 deletions
|
@ -42,7 +42,7 @@
|
||||||
<label class="form-label">OAuth2 Client ID</label>
|
<label class="form-label">OAuth2 Client ID</label>
|
||||||
|
|
||||||
<div class="input-group mt-2">
|
<div class="input-group mt-2">
|
||||||
<input type="text" value="{{ client.oauth_client_id }}" class="form-control">
|
<input disabled type="text" value="{{ client.oauth_client_id }}" class="form-control">
|
||||||
<span class="input-group-append">
|
<span class="input-group-append">
|
||||||
<button
|
<button
|
||||||
data-clipboard-text="{{ client.oauth_client_id }}"
|
data-clipboard-text="{{ client.oauth_client_id }}"
|
||||||
|
@ -57,7 +57,7 @@
|
||||||
<label class="form-label">OAuth2 Client Secret</label>
|
<label class="form-label">OAuth2 Client Secret</label>
|
||||||
|
|
||||||
<div class="input-group mt-2">
|
<div class="input-group mt-2">
|
||||||
<input type="password" value="{{ client.oauth_client_secret }}" class="form-control">
|
<input disabled type="password" value="{{ client.oauth_client_secret }}" class="form-control">
|
||||||
<span class="input-group-append">
|
<span class="input-group-append">
|
||||||
<button
|
<button
|
||||||
data-clipboard-text="{{ client.oauth_client_secret }}"
|
data-clipboard-text="{{ client.oauth_client_secret }}"
|
||||||
|
|
Loading…
Reference in a new issue