Secured URL
CBSecurity stores the secured incoming url so you can relocate the user to it after authenticating.
#html.startForm( action=prc.xehDoLogin, name="loginForm" )#
<!--- Store the _securedURL so we can use it to relocate -->
#html.hiddenField( name="_securedURL", value=event.getValue('_securedURL','') )#
#html.textfield(name="username",label="Username: ",size="40",required="required",class="textfield",value=prc.rememberMe)#
#html.passwordField(name="password",label="Password: ",size="40",required="required",class="textfield")#
<div id="loginButtonbar">
#html.checkBox(name="rememberMe",value=true,checked=(len(prc.rememberMe)))#
#html.label(field="rememberMe",content="Remember Me ",class="inline")#
#html.submitButton(value=" Log In ",class="buttonred")#
</div>
<br/>
<img src="#prc.cbRoot#/includes/images/lock.png" alt="lostPassword" />
<a href="#event.buildLink( prc.xehLostPassword )#">Lost your password?</a>
#html.endForm()#Last updated
Was this helpful?