By: Manoj Behera user 02 Aug 2018 at 8:41 a.m. CDT

2 Responses
Manoj Behera gravatar
Hello everyone I was facing issue lately, was unable to customize/change Forgot Password Page LOGO. **"/identity/person/passwordReminder.xhtml"** Tried to find the path of the logo, but was unable to find logo at this path: **img src="/identity/stylesheet/../theme/dist/img/logo.png** Unzipped the identity.war file on custom folder, but still unable to find the "logo.png". Have followed all the steps of customization from this URL: https://gluu.org/docs/ce/operation/custom-design/ Please check & help me out with this issue.

By Thomas Gasmyr Mougang staff 02 Aug 2018 at 1:50 p.m. CDT

Thomas Gasmyr Mougang gravatar
Hi Behera, Steps : 1. Login into gluu container 2. mkdir /opt/gluu/identity/custom/img 3. Put your custom logo in that folder 4. mkdir /opt/gluu/identity/custom/pages/person 5. Put your custom reminder page or the original one on that folder 6. The reference the logo in your custom reminder page like this : ``` <object data="../ext/resources/img/logo.png" type="image/png"> <img src="../img/logo.png" /> </object> ``` This section mean if **../ext/resources/img/logo.png** is not present then it fallback to **../img/logo.png**. The end result looks like this: https://pasteboard.co/HxlyXjK.png/ Thanks.

By Michael Schwartz Account Admin 02 Aug 2018 at 2:17 p.m. CDT

Michael Schwartz gravatar
Just so you know, oxTrust (/identity) registration and password reset features are only intended for really small deployments. For large deployments, we recommend building your own custom pages (for example in your portal), and calling the Gluu SCIM endpoints, which require an UMA token to access. IMHO, oxTrust is too powerful to expose to the Internet.

By Manoj Behera user 03 Aug 2018 at 7:35 a.m. CDT

Manoj Behera gravatar
Hi Mougang, Schwartz Thanks for your suggestions, we managed to resolve the issue as per your steps.. :) Regards Manoj