An error occurred while processing the template.
The following has evaluated to null or missing:
==> propsUtil.get("liferay.okta.integration.url")  [in template "741821#741867#892704" at line 8, column 28]

----
Tip: If the failing expression is known to be legally refer to something that's sometimes null or missing, either specify a default value like myOptionalVar!myDefault, or use <#if myOptionalVar??>when-present<#else>when-missing</#if>. (These only cover the last step of the expression; to cover the whole expression, use parenthesis: (myOptionalVar.foo)!myDefault, (myOptionalVar.foo)??
----

----
FTL stack trace ("~" means nesting-related):
	- Failed at: #assign baseUrl = propsUtil.get("life...  [in template "741821#741867#892704" at line 8, column 9]
----
1<#if themeDisplay.isSignedIn()> 
2	<#assign _redirectUrl= themeDisplay.getPortalURL()> 
3	<script> 
4	  window.location.href = "${_redirectUrl}"; 
5	</script> 
6<#else> 
7	<#assign domain = propsUtil.get("domain")> 
8<!--	<#assign baseUrl = propsUtil.get("liferay.okta.integration.url")> 
9	<#assign embedurl = propsUtil.get("liferay.okta.embed.url")>  
10	<script> 
11	_baseUrl = '${baseUrl}'; --> 
12	_domain = '${domain}'; 
13<!--	_embedurl = '${embedurl}'; --> 
14	</script> 
15 
16    <!-- Latest CDN production Javascript and CSS: 7.15.1 --> 
17<!--    <script src="https://global.oktacdn.com/okta-signin-widget/7.15.1/js/okta-sign-in.min.js" type="text/javascript"></script> 
18    <link href="https://global.oktacdn.com/okta-signin-widget/7.15.1/css/okta-sign-in.min.css" type="text/css" rel="stylesheet"/> 
19--> 
20    <!-- Latest CDN production Javascript and CSS: 7.15.1 --> 
21 
22	<!-- Beacuase of MIME-Type issue _Widget.scss are not importing, so kept directly in style tag--> 
23	<style> 
24	/* Hide the existing signin link*/ 
25	.sign-in { 
26		display:none; 
27
28	</style> 
29 
30	<!-- Script to init the widget --> 
31	  ${body.getData()} 
32</#if>