-
Notifications
You must be signed in to change notification settings - Fork 0
/
winsettings.hta
34 lines (34 loc) · 950 Bytes
/
winsettings.hta
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
<!doctype html>
<html>
<head>
<title>Software Environment Configuration Tool</title>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8"></meta>
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<link rel="stylesheet" href="winsettings.css" />
<script type="text/javascript" src="tps/tps.js"></script>
<script type="text/javascript" src="winsettings.js"></script>
</head>
<body onload="Init()">
<table id="frame_tbl" style="width: 100%;">
<tr>
<td id="task_c">
<table id="task_table">
</table>
</td>
</tr>
<tr>
<td style="height: 20px;"></td>
</tr>
<tr>
<td id="log_header">OPERATION LOG
</td>
</tr>
<tr>
<td>
<div id="log" class="logwin">
</div>
</td>
</tr>
</table>
</body>
</html>