This should be a fairly simple piece of code to write for someone... not me, because I can't code anything!

Code: Select all
<h2>Canadian Users Register Here</h2>
{cms_module module=SelfRegistration group=canada}<br/>
<h2>American Users Register Here</h2>
{cms_module module=SelfRegistration group=usa}<br/>
<h2>Login Here</h2>
{cms_module module=FrontEndUsers}<br/>
{cms_module module=CustomContent}
{if customcontent_memberof_canada == 1}
Welcome Canuck
{else}
{if customcontent_memberof_usa == 1}
Welcome American
{else}
You are not authorized to see this content
{/if}
{/if}
Code: Select all
<h2>Canadian Users Register Here</h2>
{cms_module module=SelfRegistration group=canada_pending}<br/>
<h2>American Users Register Here</h2>
{cms_module module=SelfRegistration group=usa}<br/>
<h2>Login Here</h2>
{cms_module module=FrontEndUsers}<br/>
{cms_module module=CustomContent}
{if customcontent_memberof_canada == 1}
Welcome Canuck
{else}
{if customcontent_memberof_usa == 1}
Welcome American
{else}
You are not authorized to see this content
{/if}
{/if}