File tree Expand file tree Collapse file tree 2 files changed +7
-7
lines changed
openid-connect-server-webapp/src/main/webapp/resources/template Expand file tree Collapse file tree 2 files changed +7
-7
lines changed Original file line number Diff line number Diff line change @@ -319,7 +319,7 @@ <h1><%=(id == null ? 'New' : 'Edit')%> Client</h1>
319
319
< div class = "tab-pane" id = "client-secret-tab" >
320
320
321
321
< div class = "control-group" id = "tokenEndpointAuthMethod" >
322
- < label class = "control-label" > < span class = "label label-default nyi" > < i class = "icon-road icon-white" > </ i > NYI </ span > Token Endpoint Authentication Method</ label >
322
+ < label class = "control-label" > Token Endpoint Authentication Method</ label >
323
323
< div class = "controls" >
324
324
< label class = "radio" >
325
325
< input type = "radio" name = "tokenEndpointAuthMethod" value = "SECRET_BASIC" < %= ( tokenEndpointAuthMethod = = 'SECRET_BASIC' ? 'checked ' : '') % >> Client Secret over HTTP Basic
@@ -331,7 +331,7 @@ <h1><%=(id == null ? 'New' : 'Edit')%> Client</h1>
331
331
< input type = "radio" name = "tokenEndpointAuthMethod" value = "SECRET_JWT" < %= ( tokenEndpointAuthMethod = = 'SECRET_JWT' ? 'checked ' : '') % >> Client Secret via symmetrically-signed JWT assertion
332
332
</label >
333
333
< label class = "radio" >
334
- < input type = "radio" name = "tokenEndpointAuthMethod" value = "PRIVATE_KEY_JWT " < %= ( tokenEndpointAuthMethod = = 'PRIVATE_KEY_JWT ' ? 'checked ' : '') % >> Asymmetrically-signed JWT assertion
334
+ < input type = "radio" name = "tokenEndpointAuthMethod" value = "PRIVATE_KEY " < %= ( tokenEndpointAuthMethod = = 'PRIVATE_KEY ' ? 'checked ' : '') % >> Asymmetrically-signed JWT assertion
335
335
</label >
336
336
< label class = "radio" >
337
337
< input type = "radio" name = "tokenEndpointAuthMethod" value = "NONE" < %= ( tokenEndpointAuthMethod = = 'NONE' ? 'checked ' : '') % >> No authentication
Original file line number Diff line number Diff line change @@ -321,19 +321,19 @@ <h1><%=(client.client_id == null ? 'New' : 'Edit')%> Client</h1>
321
321
< div class = "tab-pane" id = "client-secret-tab" >
322
322
323
323
< div class = "control-group" id = "tokenEndpointAuthMethod" >
324
- < label class = "control-label" > < span class = "label label-default nyi" > < i class = "icon-road icon-white" > </ i > NYI </ span > Token Endpoint Authentication Method</ label >
324
+ < label class = "control-label" > Token Endpoint Authentication Method</ label >
325
325
< div class = "controls" >
326
326
< label class = "radio" >
327
- < input type = "radio" name = "tokenEndpointAuthMethod" value = "SECRET_BASIC " < %= ( client . token_endpoint_auth_method = = 'SECRET_BASIC ' ? 'checked ' : '') % >> Client Secret over HTTP Basic
327
+ < input type = "radio" name = "tokenEndpointAuthMethod" value = "client_secret_basic " < %= ( client . token_endpoint_auth_method = = 'client_secret_basic ' ? 'checked ' : '') % >> Client Secret over HTTP Basic
328
328
</label >
329
329
< label class = "radio" >
330
- < input type = "radio" name = "tokenEndpointAuthMethod" value = "SECRET_POST " < %= ( client . token_endpoint_auth_method = = 'SECRET_POST ' ? 'checked ' : '') % >> Client Secret over HTTP POST
330
+ < input type = "radio" name = "tokenEndpointAuthMethod" value = "client_secret_post " < %= ( client . token_endpoint_auth_method = = 'client_secret_post ' ? 'checked ' : '') % >> Client Secret over HTTP POST
331
331
</label >
332
332
< label class = "radio" >
333
- < input type = "radio" name = "tokenEndpointAuthMethod" value = "SECRET_JWT " < %= ( client . token_endpoint_auth_method = = 'SECRET_JWT ' ? 'checked ' : '') % >> Client Secret via symmetrically-signed JWT assertion
333
+ < input type = "radio" name = "tokenEndpointAuthMethod" value = "client_secret_jwt " < %= ( client . token_endpoint_auth_method = = 'client_secret_jwt ' ? 'checked ' : '') % >> Client Secret via symmetrically-signed JWT assertion
334
334
</label >
335
335
< label class = "radio" >
336
- < input type = "radio" name = "tokenEndpointAuthMethod" value = "PRIVATE_KEY_JWT " < %= ( client . token_endpoint_auth_method = = 'PRIVATE_KEY_JWT ' ? 'checked ' : '') % >> Asymmetrically-signed JWT assertion
336
+ < input type = "radio" name = "tokenEndpointAuthMethod" value = "private_key_jwt " < %= ( client . token_endpoint_auth_method = = 'private_key_jwt ' ? 'checked ' : '') % >> Asymmetrically-signed JWT assertion
337
337
</label >
338
338
< label class = "radio" >
339
339
< input type = "radio" name = "tokenEndpointAuthMethod" value = "NONE" < %= ( client . token_endpoint_auth_method = = 'NONE' ? 'checked ' : '') % >> No authentication
You can’t perform that action at this time.
0 commit comments