?? loginbox.jsp
字號:
<%
/**
* $RCSfile: loginbox.jsp,v $
* $Revision: 1.3 $
* $Date: 2002/09/30 14:56:16 $
*/
%>
<% // Display different options based on if the user is logged in. The "isGuest"
// variable is defined in global.jsp.
// If the user is not logged in, show a link to login and show guest settings
if (isGuest) {
%>
<table cellpadding="1" cellspacing="0" border="0" width="200">
<tr><td colspan="2">
<font class=p4 face="<%= JiveGlobals.getJiveProperty("skin.default.fontFace") %>"
color="<%= JiveGlobals.getJiveProperty("skin.default.textColor") %>">
歡迎您, <b>客人</b>.
</font>
</td></tr>
<tr><td width="1%" nowrap><a href="login.jsp"><img src="images/login.gif" width="17" height="17" alt="登錄或者創建一個新用戶" border="0"></a></td>
<td width="99%">
<font class=p2 face="<%= JiveGlobals.getJiveProperty("skin.default.buttonFontFace") %>"><a href="login.jsp" title="登錄或者創建一個新用戶">登陸 / 注冊</a></font>
</td>
</tr>
<tr><td width="1%" nowrap><a href="settings.jsp"><img src="images/prefs.gif" width="17" height="17" alt="修改您的瀏覽選項" border="0"></a></td>
<td width="99%">
<font class=p2 face="<%= JiveGlobals.getJiveProperty("skin.default.buttonFontFace") %>"><a href="settings.jsp" title="修改您的瀏覽選項">訪客設置</a></font>
</td>
</tr>
</table>
<% }
// If the user is logged in, show their username, a logout button
// and a link to the settings page.
else {
%>
<table cellpadding="1" cellspacing="0" border="0" width="200">
<tr><td colspan="2">
<font class=p2 face="<%= JiveGlobals.getJiveProperty("skin.default.fontFace") %>">
歡迎您, <a href="profile.jsp?user=<%= pageUser.getID() %>"><b><%= pageUser.getUsername() %></b></a>.
</font>
</td></tr>
<tr><td width="1%" nowrap><a href="settings.jsp?user=<%= pageUser.getID() %>"><img src="images/prefs.gif" width="17" height="17" alt="修改您的瀏覽選項和個人信息" border="0"></a></td>
<td width="99%">
<font class=p2 face="<%= JiveGlobals.getJiveProperty("skin.default.buttonFontFace") %>"><a href="settings.jsp?user=<%= pageUser.getID() %>" title="修改您的瀏覽選項和個人信息">您的設置/配置文件</a></font>
</td>
</tr>
<tr><td width="1%" nowrap><a href="watches.jsp"><img src="images/watch.gif" width="17" height="17" alt="查看您監控的主題" border="0"></a></td>
<td width="99%">
<font class=p2 face="<%= JiveGlobals.getJiveProperty("skin.default.buttonFontFace") %>"><a href="watches.jsp" title="查看您監控的主題">論壇監控</a></font>
</td>
</tr>
</table>
<% } %>
?? 快捷鍵說明
復制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號
Ctrl + =
減小字號
Ctrl + -