terryd, there is a check in the wizard to do it, may be you missed it.
Anyway the result is very simple
Add this code ib the Proceced Code embed of the Footer proc:
[DEFINITION]
[SOURCE]
PROPERTY:BEGIN
PRIORITY 2500
PROPERTY:END
if (p_web.GetSessionLoggedIn() and p_web.PageName <> p_web.site.LoginPage)
! parameter 1 is the session time
! parameter 2 is the name of the login page.
! parameter 3 is the id of the <div> in the html.
p_web.Script('startCountDown('& int(p_web.site.SessionExpiryAfterHS/100) &',"'& clip(p_web.site.LoginPage) &'","countdown");')
end
[END]
And go to the XHTML tab and add something like:
<div>Copyright <!-- Net:d:year --></div>
<div class="nt-right nt-countdown">Session Expires In:<div id="countdown"></div></div>
at Top, with condition= p_web.GetSessionLoggedIn()
And thats it.
Cheers