Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

Code Block
languagecoldfusion
titlewebskin/farLogin/displayTypeBody.cfm
<cfsetting enablecfoutputonly="true">

<cfimport taglib="/farcry/core/tags/formtools/" prefix="ft" />
 
<cfset stLocal.stResult = application.security.processLogin() />

<cfif stLocal.stResult.authenticated>
	<cflocation url="#URLDecode(stLocal.stResult.loginReturnURL)#" addtoken="false" />
</cfif>
 
<ft:form>
	<ft:object typename="farLogin" lFields="username,password" prefix="login" legend="" focusField="username" />
	<ft:button value="Log In" />
</ft:form>

<cfsetting enablecfoutputonly="false">

 http://discourse.farcrycore.org/t/separate-public-and-webtop-login-pages/354

Inline Login Pod

Code Block
xml
xml
titleconfig/_serverSpecificRequestScope.cfm
<cfset stLocal.stResult = application.security.processLogin() />

...