OnlineJudge/frontend/admin/index.html
2016-08-14 22:48:43 +08:00

37 lines
995 B
HTML

<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>Online Judge Admin</title>
<style>
#loading {
position: absolute;
top: 50%;
left: 50%;
width: 400px;
height: 400px;
margin-top: -200px;
margin-left: -200px;
}
#browser-unsupported {
padding: 8px 0;
background: #FBE3E4;
color: #8A1F11;
text-align: center;
}
</style>
</head>
<body>
<div id="browser-unsupported" style="display: none">Your browser is <strong>NOT</strong> supported. click <a href="http://browsehappy.com/">here</a> tp upgrade your browser.</div>
<script>
// new version IE do not have 'MSIE' in ua
if (navigator.userAgent.indexOf("MSIE") > -1) {
document.getElementById("browser-unsupported").removeAttribute("style");
}
</script>
<img src="../static/img/loading.jpg" id="loading">
<div id="app">
</div>
</body>
</html>