-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
46 lines (42 loc) · 1.88 KB
/
index.html
File metadata and controls
46 lines (42 loc) · 1.88 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
<!doctype html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport"
content="width=device-width, user-scalable=no, initial-scale=1.0, maximum-scale=1.0, minimum-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<title>Document</title>
<script src="./index.js"></script>
</head>
<body>
<main class="grid-container">
<div class="grid-column">
<textarea id="order"></textarea>
<button id="parseOrderBtn">Parse</button>
<button id="parsePredicate">Parse predicate</button>
</div>
<div class="grid-column">
<label for="makerAssetData">makerAssetData: <input id="makerAssetData"></label>
<label for="takerAssetData">takerAssetData: <input id="takerAssetData"></label>
<label for="getMakingAmount">getMakingAmount: <input id="getMakingAmount"></label>
<label for="getTakingAmount">getTakingAmount: <input id="getTakingAmount"></label>
<div class="permit-group">
<div class="predicate">
<label class="predicate" for="predicate">predicate: <input id="predicate"></label>
</div>
<div><label for="simulate-result">simulate result: <input id="simulate-result" ></label></div>
<div>
<label for="check-predicate">predicate valid: <input id="check-predicate"></label>
</div>
</div>
<label for="timestamp">timestamp: <input id="timestamp"></label>
<label for="nonce">nonce: <input id="nonce"></label>
<label for="series">series: <input id="series"></label>
<label for="permit">permit: <input id="permit"></label>
<label for="preInteraction">preInteraction: <input id="preInteraction"></label>
<label for="postInteraction">postInteraction: <input id="postInteraction"></label>
</div>
</main>
<link rel="stylesheet" href="main.css">
</body>
</html>