-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathindex.html
More file actions
30 lines (29 loc) · 838 Bytes
/
index.html
File metadata and controls
30 lines (29 loc) · 838 Bytes
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>JCA-FILTER</title>
<script type="module" src="./site/index.js"></script>
<style>
.full-width {
width:100%;
}
.long-word-breaker {
word-break: break-all;
white-space: pre-wrap;
}
</style>
</head>
<body>
<h1>Filter generator</h1>
<h3>Enter a filter or <a id="example" href="#">pick an example</a></h3>
<textarea id="content" rows="5" class="full-width"></textarea>
<button id="generate">Generate PHP-CRUD-API filter</button>
<div id="container" style="display: none">
<pre id="generated" class="long-word-breaker"></pre>
<button style="margin:0.1em" id="copy">Copy</button>
</div>
<hr />
<a href = "https://github.com/thipages/jca-filter">Back to source</a>
</body>
</html>