23 lines
601 B
HTML
23 lines
601 B
HTML
<!DOCTYPE html>
|
|
<html>
|
|
<head>
|
|
<meta charset="utf-8">
|
|
<title>Forbidden</title>
|
|
<script src="{{ url_for('static', filename='js/jquery.min.js')}}"></script>
|
|
</head>
|
|
<body>
|
|
<h1 style="margin-top: 50px;">无法访问他人的信息!</h1>
|
|
<h3>即将返回原界面...</h3>
|
|
<h3>3秒后自动跳转...</h3>
|
|
<script>
|
|
setTimeout(function() {
|
|
{% if "next" in session %}
|
|
var next = '{{ session.pop("next") }}';
|
|
{% else %}
|
|
var next = '{{ url_for("main.root") }}';
|
|
{% endif %}
|
|
window.location.replace(next);
|
|
}, 3000);
|
|
</script>
|
|
</body>
|
|
</html> |