2013-08-01 10:33:49 +08:00
|
|
|
|
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"
|
2013-09-05 10:15:40 +08:00
|
|
|
|
"http://www.w3.org/TR/html4/loose.dtd">
|
2013-08-01 10:33:49 +08:00
|
|
|
|
<html>
|
2013-09-05 10:15:40 +08:00
|
|
|
|
<title>Trustie 500 error</title>
|
2013-09-05 20:52:22 +08:00
|
|
|
|
<style type="text/css">
|
2013-09-05 10:15:40 +08:00
|
|
|
|
body {
|
|
|
|
|
font-family: Trebuchet MS, Georgia, "Times New Roman", serif;
|
2013-09-05 20:52:22 +08:00
|
|
|
|
background: #fff;
|
2013-09-05 10:15:40 +08:00
|
|
|
|
margin: 10px;
|
|
|
|
|
}
|
|
|
|
|
h1 {
|
|
|
|
|
font-size: 1.5em;
|
|
|
|
|
}
|
|
|
|
|
p {
|
|
|
|
|
font-size: 0.8em;
|
|
|
|
|
}
|
2013-09-05 20:52:22 +08:00
|
|
|
|
.h_content{
|
|
|
|
|
text-align: center;
|
|
|
|
|
padding-top: 15px;
|
|
|
|
|
}
|
|
|
|
|
.font_h{
|
|
|
|
|
font-size: 24px;
|
|
|
|
|
color: #ff0077;
|
|
|
|
|
}
|
2013-09-05 10:15:40 +08:00
|
|
|
|
</style>
|
2016-11-14 15:36:36 +08:00
|
|
|
|
<script type="text/javascript">
|
|
|
|
|
$(function(){
|
2016-11-18 17:21:23 +08:00
|
|
|
|
if(window.history.length == 1)
|
|
|
|
|
{
|
|
|
|
|
$("#history_back").css("color","#CCC");
|
|
|
|
|
$("#history_back").css("cursor","default");
|
|
|
|
|
}
|
2016-11-14 15:36:36 +08:00
|
|
|
|
$("#subject").keydown(function(){
|
|
|
|
|
var curLength=$("#subject").val().length;
|
|
|
|
|
if(curLength>50){
|
|
|
|
|
var num=$("#subject").val().substr(0,50);
|
|
|
|
|
$("#subject").val(num);
|
|
|
|
|
}
|
|
|
|
|
else{
|
|
|
|
|
$("#textCount").text(50-$("#subject").val().length)
|
|
|
|
|
}
|
|
|
|
|
}).keyup(function(){
|
|
|
|
|
var curLength=$("#subject").val().length;
|
|
|
|
|
if(curLength>50){
|
|
|
|
|
var num=$("#subject").val().substr(0,50);
|
|
|
|
|
$("#subject").val(num);
|
|
|
|
|
}
|
|
|
|
|
else{
|
|
|
|
|
$("#textCount").text(50-$("#subject").val().length)
|
|
|
|
|
}
|
|
|
|
|
});
|
|
|
|
|
});
|
|
|
|
|
</script>
|
2013-09-05 10:15:40 +08:00
|
|
|
|
<body>
|
|
|
|
|
<!-- <h1>Internal error</h1>
|
|
|
|
|
<p>An error occurred on the page you were trying to access.<br />
|
|
|
|
|
If you continue to experience problems please contact your Trustie administrator for assistance.</p>
|
|
|
|
|
<p>If you are the Trustie administrator, check your log files for details about the error.</p> -->
|
2016-11-14 15:36:36 +08:00
|
|
|
|
<div class="muban_conbox_max">
|
|
|
|
|
<div class="pages_new_404">
|
|
|
|
|
<img src="images/404/pic_500.jpg" >
|
|
|
|
|
<p class="pages_new_404_txt mt40">网站正在维护,请稍后重试。
|
2016-11-18 17:21:23 +08:00
|
|
|
|
<a href="javascript:history.back()" id="history_back" class="linkBlue2 mr10">返回上页>></a>
|
2016-11-14 15:36:36 +08:00
|
|
|
|
<a href="javascript:void(0)" class="linkBlue2 mr10" onclick="$('#feedback_div').toggle();"> 给我留言>></a>
|
2016-11-18 17:21:23 +08:00
|
|
|
|
<a href="http://shang.qq.com/wpa/qunwpa?idkey=064e805dac955b8aea158c4b0dd3f033b8841bcee175fd619613f0e4ac4d8151" target="_blank" class="linkBlue2">QQ反馈>></a>
|
2016-11-14 15:36:36 +08:00
|
|
|
|
</p>
|
2013-09-05 10:15:40 +08:00
|
|
|
|
|
2016-11-14 15:36:36 +08:00
|
|
|
|
<div style="display:none;" class="mt10" id="feedback_div">
|
|
|
|
|
<% get_memo %>
|
|
|
|
|
<%= form_for(@new_memo, :url => create_feedback_forum_path(@public_forum)) do |f| %>
|
|
|
|
|
<%= f.text_area :subject, :id=>"subject", :style => "width: 570px;", :class => "feedbackText mb5", :placeholder => "请在此输入平台的问题和建议,您也可以通过QQ留言,谢谢!" %>
|
|
|
|
|
<%= f.hidden_field :content,:id => 'hidden', :required => true , :value => l(:label_feedback_value) %>
|
|
|
|
|
<span class="c_grey fl">还能输入<span id="textCount" class="c_orange">50</span>个字符</span>
|
|
|
|
|
<a href="javascript:void(0);" class="sy_btn_blue_mini f12 fr mr10" onclick="$('#new_memo').submit();">留 言</a>
|
|
|
|
|
<a href="javascript:void(0);" class="sy_btn_grey_mini f12 fr mr10" onclick="$('#feedback_div').hide();">取 消</a>
|
|
|
|
|
<div class="cl"></div>
|
|
|
|
|
<% end %>
|
|
|
|
|
</div>
|
|
|
|
|
</div>
|
|
|
|
|
</div>
|
2013-09-05 10:15:40 +08:00
|
|
|
|
</body>
|
2013-08-01 10:33:49 +08:00
|
|
|
|
</html>
|