您的位置:首页 > 其它

Siteserver CMS登录注册标签

2017-07-08 15:17 316 查看
CMS5.0以上版本使用:

<stl:if type="IsUserLoggin">
<stl:successtemplate>
欢迎"{user.displayName}"
<stl:a href="{stl.HomeUrl}">用户中心</stl:a>
<stl:a href="{stl.LogoutUrl}">退出</stl:a>
</stl:successtemplate>
<stl:failuretemplate>
<stl:a href="{stl.LoginUrl}">登陆</stl:a>
<stl:a href="{stl.RegisterUrl}">注册</stl:a>
</stl:failuretemplate>
</stl:if>
CMS5.0以下版本使用:

<stl:if type="isAnonymous">
<stl:yes>
<span class="login_bar">
<stl:action type="login" class="top_a1 j_login_btn">登录</stl:action>
<stl:action type="register" class="top_a1 j_reg_btn">注册</stl:action>
</span>
</stl:yes>
<stl:no>
{user.displayName}
<stl:action type="logout" class="top_a1">退出</stl:action>
</stl:no>
</stl:if>
内容来自用户分享和网络整理,不保证内容的准确性,如有侵权内容,可联系管理员处理 点击这里给我发消息
标签: