-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathindex.html
More file actions
48 lines (44 loc) · 1.83 KB
/
index.html
File metadata and controls
48 lines (44 loc) · 1.83 KB
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
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<title>ECSPOS Server</title>
<meta http-equiv="Content-Security-Policy" content="script-src 'self' 'unsafe-inline';" />
<link rel="stylesheet" href="node_modules/bootstrap/dist/css/bootstrap.min.css">
</head>
<body style="background: white;">
<div class="container">
<div class="mb-3 mt-3">
<div class="card">
<div class="card-body">
<h4>Server Configuration</h4>
<div class="form-group">
<div class="row mb-3">
<div class="col-1">
<label for="port">Port</label>
</div>
<div class="col-2">
<input type="number" class="form-control form-control-sm" value="3000" id="port">
</div>
</div>
<div class="row mb-3">
<div class="col-1">
</div>
<div class="col-5">
<button id="btn-start-server" class="btn btn-primary">Start Server</button>
<button id="btn-test" class="btn btn-success">Test Print</button>
</div>
</div>
<div class="row mb-3">
<label for="log">Log</label>
<textarea readonly class="form-control" name="log" id="log" cols="30" rows="10"></textarea>
</div>
</div>
</div>
</div>
</div>
</div>
<script>
</script>
</body>
</html>