@elliotdickison I don't know of a way to get the default value for a form, but you may be able to use javascript to populate the values on the form.
@brad I looks like you are on the right path. Can you please send a screen shot of the configuration you have for the JWT tab and some sample code on how you are retrieving it?
@mark-robustelli Ignore my last post. I managed to do it. Full code incase someone else wants to use this:
#google-login-button{
background-color: white;
border: 1px solid #c5c8ca;
}
.login-button-container .login-button.google .text {
color: black;
}
@mark-robustelli That seems to do the trick. Since I want the background white, I need the text black but I can't seem to get it to work. I'm no expert with CSS but it seems setting the color property on the google-login-button style doesn't do it. Digging deeper into the browser html it looks like the class "text" on the div inside the button is controlling the color.
@qermezkon Is this similar to this post? https://fusionauth.io/community/forum/topic/2606/error-encountered-with-fast-path-install
@ronn316 I was able to replicate what you are seeing. I changed the login method for the Identity provide and the theme worked. I see when you hover over the info for Button text it says that the GIS API will not be utilized in this configuration. It looks like that means the Button properties too. We may need to update the documentation here.
On a related note, I looked at the html and was able to add the following css to the theme and turn the button red. You may be able to get the look you going after by doing something similar.
#google-login-button{
background-color:red;
}