Skip to content
Snippets Groups Projects
Verified Commit baa641f7 authored by Gabriel Zachmann's avatar Gabriel Zachmann
Browse files

fix not-logged-in MT creation in web

parent 9388f460
No related branches found
No related tags found
No related merge requests found
......@@ -12,6 +12,12 @@
<!-- ### Dependencies -->
<!-- -->
## mytoken 0.5.3
### Bugfixes
- Fixed a bug in the webinterface where mytokens could not be created when not logged-in
## mytoken 0.5.2
### Bugfixes
......
......@@ -8,7 +8,7 @@ import (
const (
MAJOR = 0
MINOR = 5
FIX = 2
FIX = 3
DEV = false
)
......
......@@ -24,7 +24,7 @@
<form class="form-inline" id="login-form" method="post" role="form">
<input type="hidden" name="grant_type" value="oidc_flow"/>
<input type="hidden" name="oidc_flow" value="authorization_code"/>
<select class="form-control custom-select" name="oidc_issuer">
<select id="login-iss" class="form-control custom-select" name="oidc_issuer">
{{#providers}}
<option value="{{issuer}}">{{name}}</option>
{{/providers}}
......
internal/server/web/static/img/mytoken-grey.png

8.78 KiB | W: | H:

internal/server/web/static/img/mytoken-grey.png

8.79 KiB | W: | H:

internal/server/web/static/img/mytoken-grey.png
internal/server/web/static/img/mytoken-grey.png
internal/server/web/static/img/mytoken-grey.png
internal/server/web/static/img/mytoken-grey.png
  • 2-up
  • Swipe
  • Onion skin
internal/server/web/static/img/mytoken.png

8.8 KiB | W: | H:

internal/server/web/static/img/mytoken.png

8.8 KiB | W: | H:

internal/server/web/static/img/mytoken.png
internal/server/web/static/img/mytoken.png
internal/server/web/static/img/mytoken.png
internal/server/web/static/img/mytoken.png
  • 2-up
  • Swipe
  • Onion skin
......@@ -41,7 +41,7 @@ $('#select-token-type').on('change', function () {
function sendCreateMTReq() {
let data = {
"name": $('#tokenName').val(),
"oidc_issuer": storageGet("oidc_issuer"),
"oidc_issuer": storageGet("oidc_issuer") || $('#login-iss').val(),
"grant_type": "oidc_flow",
"oidc_flow": "authorization_code",
"redirect_type": "native",
......
mytoken.png

8.8 KiB | W: | H:

mytoken.png

8.8 KiB | W: | H:

mytoken.png
mytoken.png
mytoken.png
mytoken.png
  • 2-up
  • Swipe
  • Onion skin
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment