-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
44 lines (39 loc) · 1.42 KB
/
index.html
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
<html>
<head><title>BroadWeb</title>
<!-- EXT JS CSS -->
<link rel="stylesheet" type="text/css" href="css/ext-all-gray.css"/>
<link rel="stylesheet" type="text/css" href="css/login.css"/>
<!-- EXT JS DEFINE -->
<!--<script type="text/javascript" src="js/ext-all.js"></script>-->
<!--<script type="text/javascript" src="js/ext-all-debug.js"></script>-->
<script type="text/javascript" src="js/1.js"></script>
<script type="text/javascript" src="js/1.old.lzma.js"></script>
<!-- joint draw lib -->
<script src="js/joint/joint.all.min.js" type="text/javascript"></script>
<script src="js/lzma.js" type="text/javascript"></script>
<script type="text/javascript" >
/*
my_lzma = new LZMA("js/lzma_worker.js");
my_lzma.decompress(lzma, function (result) {
eval(result);
console.log(result, "lzma len=", lzma.length);
}, function (percent) {
});
*/
//fileref.setAttribute("src", "index.js?r="+ Math.random());
var fileref=document.createElement('script')
fileref.setAttribute("type","text/javascript")
fileref.setAttribute("src", "index.js");
document.getElementsByTagName("head")[0].appendChild(fileref);
</script>
</head>
<body id="login_body">
<form name="f" id="form" >
<div class="l-wrap">
<div class="login_bg" id="login_bg">
</div>
</div>
</div>
</form>
</body>
</html>