forked from siteserver/cms
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathloading.aspx
More file actions
46 lines (43 loc) · 1.72 KB
/
loading.aspx
File metadata and controls
46 lines (43 loc) · 1.72 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
<%@ Page Language="c#" Inherits="SiteServer.BackgroundPages.PageLoading" Trace="False" %>
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>SiteServer 管理后台</title>
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
<link href="assets/bootstrap/css/bootstrap.min.css" rel="stylesheet" type="text/css" />
<link href="assets/css/core.css" rel="stylesheet" type="text/css" />
<link href="assets/css/components.css" rel="stylesheet" type="text/css" />
<link href="assets/css/pages.css" rel="stylesheet" type="text/css" />
<link href="assets/css/menu.css" rel="stylesheet" type="text/css" />
<link href="assets/css/responsive.css" rel="stylesheet" type="text/css" />
<link href="assets/css/ionicons.min.css" rel="stylesheet" type="text/css" />
<link href="assets/icons/favicon.png" rel="icon" type="image/png">
<style>
body {
padding: 20px 0;
}
</style>
</head>
<body>
<div class="m-l-15 m-r-15">
<div class="text-center" style="margin-top: 100px" v-bind:style="{ display: recentlyPlugins ? '' : 'none' }">
<img class="mt-3" src="assets/layer/skin/default/xubox_loading0.gif" />
<p class="lead mt-3 text-nowrap">载入中,请稍后...</p>
</div>
</div>
</body>
</html>
<script src="assets/jquery/jquery-1.9.1.min.js" type="text/javascript"></script>
<script language="javascript">
$(function () {
var url = "<%=GetRedirectUrl()%>";
if (url && url.length > 0) {
setTimeout(function () {
location.href = url;
}, 200);
}
});
</script>
<!--#include file="inc/foot.html"-->