-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtesthtml.html
executable file
·49 lines (44 loc) · 2.2 KB
/
testhtml.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
45
46
47
48
49
<!DOCTYPE html>
<html lang="en">
<head>
<!-- Use correct character set. -->
<meta charset="utf-8">
<!-- Tell IE to use the latest, best version. -->
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<!-- Make the application on mobile take up the full browser screen and disable user scaling. -->
<meta name="viewport" content="width=device-width, initial-scale=1, maximum-scale=1, minimum-scale=1, user-scalable=no">
<title>Hello World!</title>
<link href="popupwindow.css" rel="stylesheet">
<link href="bootstrap.min.css" rel="stylesheet">
<script src="jquery-3.6.0.min.js"></script>
<script src="bootstrap.min.js"></script>
<script src="popupwindow.js"></script>
<script src="functions.js"></script>
</head>
<body>
<div id="logwindow" style="display:none;" >
<div style="width:100%; height:100%;">
<div style="display: block; margin:auto; height: 100%; width:100%;"><textarea id="logtextarea" style="height: 100%; width:100%; resize:none; min-height:150px; min-width:350px;" readonly></textarea>
<button style="left: 50%; position: relative; -ms-transform: translate(-50%); transform: translate(-50%);">OK</button>
</div>
</div>
</div>
<div style="text-align:center; display: block; vertical-align:middle; margin-left: auto;
margin-right: auto; position: relative;">
<img style="" src="Resources/splash.jpeg">
</div>
<div class="progress" style="display:block; margin:auto; text-align:center; position: relative; max-width:500px; margin-top:10px;">
<div class="progress-bar progress-bar-striped active" role="progressbar" aria-valuenow="0" aria-valuemin="0" aria-valuemax="100" style="width:0%;">0%</div>
</div>
<div style="text-align:center; display: block; margin-top:10px">
<span id="progresstext">Initializing</span>
</div>
<div style="display: block; margin: auto; text-align:center;">
<img style="vertical-align:middle;" src="Resources/error-icon.png" width="48" height="48">
<span style="color: red; font-size: 18px; font-weight: bold;">Error! cannot connect to the internet</span>
</div>
<div style="text-align:center;">
<button onclick="showlogwindow();" style="margin:auto; text-align:center;">Show Log</button>
</div>
</body>
</html>