-
Notifications
You must be signed in to change notification settings - Fork 14
/
Copy pathindex.html
50 lines (46 loc) · 1.46 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
45
46
47
48
49
50
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<title>Diskr</title>
<link rel="stylesheet" href="node_modules\bootstrap\dist\css\bootstrap.min.css">
<link rel="stylesheet" href="node_modules\datatables.net-bs4\css\dataTables.bootstrap4.css">
<style>
.top-buffer {
margin-top: 1em;
}
</style>
</head>
<body>
<div class="container">
<!-- Form -->
<div class="row top-buffer">
<div class="col-lg-6 mx-auto">
<div class="input-group">
<input id="computerName" type="text" class="form-control" placeholder="Computer Name">
<span class="input-group-btn">
<button id="getDisk" class="btn btn-primary" type="button">Get Disk Info!</button>
</span>
<span class="input-group-btn">
<button id="changeUser" class="btn btn-warning" type="button">Change User</button>
</span>
</div>
</div>
</div>
<!-- Error -->
<div class="row justify-content-center top-buffer">
<div class="alert alert-danger" role="alert" style="display: none">
<strong>Whoops!</strong>
<div class="message"></div>
</div>
</div>
<!-- Output -->
<div class="row justify-content-center top-buffer">
<table id="output" class="table table-striped table-bordered" cellspacing="0"></table>
</div>
</div>
</body>
<script>
require('./renderer.js')
</script>
</html>