forked from cdgco/01V-Web-Controller
-
Notifications
You must be signed in to change notification settings - Fork 0
/
info.html
36 lines (29 loc) · 1.06 KB
/
info.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
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>01V Web Controller</title>
<script>
var $ = jQuery = require("jquery")
</script>
<link rel="stylesheet" href="./assets/css/bootstrap.min.css">
</head>
<body>
<div id="container" class="container-fluid">
<br><br><br><br>
<div id="setup-info" style="padding-left: 20%; padding-right: 20%;">
<div class="row">
<div class="col-xs-12 col-sm-12 col-md-12 col-lg-12">
<h3 class="address-heading">Remote Address</h3>
<input type="text" disabled id="address-output" style="font-weight: bolder;font-size: 16px;" />
</div>
</div>
<br>
<button type="submit" id="openButton" class="btn btn-primary btn-lg btn-block">Open 01V Web Controller</button>
</div>
</div>
<script src="./assets/js/jquery-3.5.1.min.js"></script>
<script src="./assets/js/bootstrap.min.js"></script>
<script src="./window2.js" charset="utf-8"></script>
</body>
</html>