By: Kevin Ogden user 24 Aug 2018 at 2:42 p.m. CDT

2 Responses
Kevin Ogden gravatar
So I made my own copied over the login.xhtml file my custom/pages directory. I've been able to change the header and footer. However, I can't seem to make any changes to the login form. I'm trying to integrate the logic with a design I've already made but all these tags dynamically moving/generating DOM elements is making it difficult. The only logic I really need is in the login/password inputs. However, I can't make any real changes in the login form. If I try to inline style a div to make the background color red, I'll restart the server and the login form is still the same. Is there an easier way to customize the login design? Currently all this extra xhtml is getting in the way. Also the login form is refusing to change.

By Mohib Zico staff 26 Aug 2018 at 3:31 a.m. CDT

Mohib Zico gravatar
I remember there is one issue regarding oxauth_web_resources.xml missing in /opt/gluu/jetty/oxauth/webapps location in 3.x version; which should have been fixed in 3.1.3 onwards. Please try in 3.1.3; let's see how that goes.

By Kevin Ogden user 27 Aug 2018 at 8:18 a.m. CDT

Kevin Ogden gravatar
The oxauth_web_resources.xml file is still in my webapps folder despite being in 3.1.1. ``` <?xml version="1.0" encoding="UTF-8"?> <!DOCTYPE Configure PUBLIC "-//Jetty//Configure//EN" "http://www.eclipse.org/jetty/configure_9_0.dtd"> <Configure class="org.eclipse.jetty.server.handler.ContextHandler"> <Set name="contextPath">/oxauth/ext/resources</Set> <Set name="handler"> <New class="org.eclipse.jetty.server.handler.ResourceHandler"> <Set name="resourceBase">/opt/gluu/jetty/oxauth/custom/static</Set> <Set name="directoriesListed">false</Set> </New> </Set> </Configure> ``` This seems like it would handle my custom static resources, but how about the login form html I'm directly changing? It just gets overwritten.