Could you please help on a auth script issue. We have kept the custom xhtml file at below location.
When I pass acr value 'nixu-tupas' in Get Auth url, I am able to see the UI. But I am having problem on getting variable values from auth script (.Py) to custum UI (.xhtml)
/opt/gluu-server-3.1.0/opt/gluu/jetty/oxauth/custom/pages/auth/strongauth/strongauthlogin.xhtml
Python file (Auth Script)
```
tupas_configs = []
bank_config = dict()
bank_config["tupas_url"] = "https://www.tupasloginurl.com"
tupas_configs.append(bank_config)
context.set("tupas_configs", tupas_configs)
```
In Xhtml
I am trying to access tupas url
```
#{tupas_configs.get(x)['tupas_url']}
```
Could you please help me to understand how to pass a variable value from Auth script to xhtml file ?
Like custom xhtml paages which we can keep at oxauth/custom/pages/, can we create custom messages.properties file or we have to unpack oxauth.war file and add changes to messages.properties file?
Many thanks for the help
Kind Regards,
Jajati