This repository was archived by the owner on Jan 26, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
43 lines (39 loc) · 1.81 KB
/
index.html
File metadata and controls
43 lines (39 loc) · 1.81 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
<!DOCTYPE html>
<html>
<head>
<title>Log4j Helper</title>
<link rel="stylesheet" href="https://cdn.bootcss.com/bootstrap/3.3.7/css/bootstrap.min.css" crossorigin="anonymous">
<link rel="stylesheet" href="resources/dragula/dist/dragula.min.css" type="text/css" />
<link rel="stylesheet" href="resources/style.css" type="text/css" />
</head>
<body>
<ul id="logTabs" class="nav nav-pills">
<li role="presentation" class="active"><a href="#log4j">Log4j</a></li>
<li role="presentation"><a href="#log4j2">Log4j2</a></li>
</ul>
<div class="tab-content">
<div role="tabpanel" class="tab-pane fade in active" id="log4j">
<div class='parent'>
<label for="">Source ( Drag and drop to `Target` )</label>
<div id='source' class='container'>
</div>
<label for="">Target ( Drag outside to remove element)</label>
<div id='target' class='container container-target'>
</div>
<label for="">Result ( conversion pattern )</label>
<input type="textarea" id="result" class='container container-result' />
<label for="">Preview</label>
<input type="textarea" id="preview" class='container container-result' />
</div>
</div>
<div role="tabpanel" class="tab-pane fade" id="log4j2">
<div>
</div>
</div>
</div>
<script type="text/javascript" src="resources/jquery/dist/jquery.min.js"></script>
<script src="https://cdn.bootcss.com/bootstrap/3.3.7/js/bootstrap.min.js" crossorigin="anonymous"></script>
<script type="text/javascript" src='resources/dragula/dist/dragula.min.js'></script>
<script type="text/javascript" src="resources/main.js"></script>
</body>
</html>