By: Zixu Zhao user 13 Nov 2017 at 2:40 p.m. CST

4 Responses
Zixu Zhao gravatar
Before gluu redirect to the post_logout_redirect_uri, it will quick show a line of "Logout requests sent." and then redirect to the host site. Now I want to make a custom css spinner instead of this line on that page, but I tried anything with custom logout.xhtml, logout.page.xhtml, or template.xhtml without any affects on that page. Any help on this? Thanks! ![ScreenShot](https://i.imgur.com/PQhsNok.png "ScreenShot")

By Michael Schwartz Account Admin 13 Nov 2017 at 2:48 p.m. CST

Michael Schwartz gravatar
Can you be a little more specific about which logout pages exactly you tried to modify? Also, how was the person logged in initially... using which authentication script?

By Zixu Zhao user 13 Nov 2017 at 3:36 p.m. CST

Zixu Zhao gravatar
Hi, it's the oxauth logout with a page body as "Logout requests sent." Please see [this line](https://github.com/GluuFederation/oxAuth/blob/master/Server/src/main/java/org/xdi/oxauth/session/ws/rs/EndSessionRestWebServiceImpl.java#L307) in the source code, I am wondering if I could substitute this html by a customized page, but it seems a hardcode page, right? ``` html += "<title>Gluu Generated logout page</title>" + "</head>" + "<body>" + "Logout requests sent.<br/>" + iframes + "</body>" + "</html>"; ``` If it is a hardcode page, do you have any plan to make it a template? Thanks.

By Aliaksandr Samuseu staff 13 Nov 2017 at 3:50 p.m. CST

Aliaksandr Samuseu gravatar
Hi, Zixu. Yes, it seems to be hardcoded. Please fill free to submit [a feature request issue](https://github.com/GluuFederation/oxAuth/issues/new) at Github for it. There hardly will be a specific ETA, as it's not a critical issue. Though it's possible to prioritize feature requests coming from a customer, if you could be interested in getting a Support plan any time soon.

By Zixu Zhao user 13 Nov 2017 at 5:08 p.m. CST

Zixu Zhao gravatar
Thanks for the replying.