-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
52 lines (36 loc) · 1.03 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
51
52
<html>
<head>
<title>HAproxy config visualizer</title>
<script src="bundle.js"></script>
<link rel="stylesheet" href="node_modules/bootstrap/dist/css/bootstrap.css">
<style>
#cy {
width: 60%;
height: 98%;
display: block;
float: left;
}
#config {
width: 30%;
height: 60%;
display: block;
}
</style>
</head>
<body>
<div>
<b><a href='https://github.com/hoerup/haproxy-visualizer/blob/main/README.md'>haproxy-visualizer</a></b>
</div>
<div>
<div id="cy"></div>
<div>
Paste haproxy config here:<br>
<textarea id="config"></textarea><br>
<button id="parsebtn" class="btn btn-primary" >parse</button>
<button id="resetbtn" class="btn btn-primary" >reset view</button>
<br><br>
<input type="text" placeholder="search" id="search">
</div>
</div>
</body>
</html>