?? accountsuccess.jsp
字號:
<%@ page contentType="text/html;charset=ISO8859_1" %>
<%
/**
* $RCSfile: accountSuccess.jsp,v $
* $Revision: 1.2 $
* $Date: 2002/09/26 03:52:18 $
*/
%>
<%@ page import="com.jivesoftware.forum.*,
com.jivesoftware.forum.util.*"
errorPage="error.jsp"
%>
<%@ include file="global.jsp" %>
<% // Get parameters
boolean redirect = ParamUtils.getBooleanParameter(request,"redirect");
String where = ParamUtils.getParameter(request,"where");
if (redirect) {
if (where == null) {
where = "index.jsp";
}
response.sendRedirect(where);
return;
}
%>
<% String title = "論壇 - 創建帳號"; %>
<%@ include file="header.jsp" %>
<% out.flush(); %>
<%-- Breadcrumbs --%>
<font face="<%= JiveGlobals.getJiveProperty("skin.default.fontFace") %>" color="<%= JiveGlobals.getJiveProperty("skin.default.linkColor") %>">
<b>
<a href="<%= JiveGlobals.getJiveProperty("skin.default.homeURL") %>"
>首頁</a>
»
<a href="index.jsp" title="返回論壇列表"
>論壇</a>
»
<a href="account.jsp"
>創建帳號</a>
</b>
</font>
<p>
<font size="-1" face="<%= JiveGlobals.getJiveProperty("skin.default.fontFace") %>">
<b>恭喜您!</b>
<br>
您的帳號已經成功的創建.您可以通過訪問<a href="settings.jsp">用戶設置</a>頁面
編輯您的配置文件和帳號設置或者點擊下面的按鈕訪問論壇
</font>
<p>
<center>
<form action="accountSuccess.jsp">
<input type="hidden" name="redirect" value="true">
<input type="hidden" name="where" value="index.jsp">
<input type="submit" value="論壇首頁">
</form>
</center>
<br>
<%@ include file="footer.jsp" %>
?? 快捷鍵說明
復制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號
Ctrl + =
減小字號
Ctrl + -