forked from HafisCZ/sf-tools
-
Notifications
You must be signed in to change notification settings - Fork 0
/
request.html
58 lines (52 loc) · 2.84 KB
/
request.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
53
54
55
56
57
58
<!DOCTYPE html>
<html lang="en">
<head>
<title>SFTools</title>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="icon" type="image/png" href="res/favicon.png"/>
<link rel="stylesheet" href="css/pages/request.css"/>
<script src="vendor/js/jquery.3.4.1.min.js"></script>
<script src="vendor/js/semantic.min.js"></script>
<script src="js/util.js"></script>
<script src="js/playa/calculations.js"></script>
<script src="js/plugins.js"></script>
<script src="js/core/util.js"></script>
<script src="js/core/models.js"></script>
<script src="js/core/core.js"></script>
<script src="js/core/database.js"></script>
<script src="js/script/config.js"></script>
<script src="js/script/ast.js"></script>
<script src="js/script/core.js"></script>
<script src="js/changelog.js"></script>
<script src="js/views/base.js"></script>
<script src="endpoint/endpoint.js"></script>
<script src="js/sim/base.js"></script>
<script src="js/pages/request.js"></script>
</head>
<body class="inverted !m-0 h-full">
<div class="ui fixed inverted borderless huge menu">
<div class="header item">SFTools</div>
</div>
<div id="container-normal" class="dialog container request-dialog-container" style="display: none;">
<div class="inverted small bordered dialog">
<div class="header"><span id="origin" class="text-orange"></span> <span data-intl="request.title"></span></div>
<div class="text-center" data-intl="request.notice#"></div>
<div class="ui inverted form flex flex-col gap-4 pr-4 overflow-y-scroll" id="content" style="height: 45vh;"></div>
<div class="ui three fluid buttons">
<button class="ui !background-orange !text-black button" data-op="close" data-intl="dialog.shared.cancel"></button>
<button class="ui basic inverted button" id="import-endpoint">Endpoint</button>
<input type="file" multiple id="import-file" accept=".har,.json" class="ui invisible file input">
<label class="ui basic inverted button" for="import-file" data-intl="integration.file"></label>
</div>
</div>
</div>
<div id="container-error" class="dialog container request-dialog-container" style="display: none;">
<div class="inverted very small bordered dialog">
<div class="header"><span id="origin" class="text-orange"></span> <span data-intl="request.error.title"></span></div>
<div class="text-center" data-intl="request.error.notice#"></div>
<button class="ui !background-orange !text-black fluid button" data-op="close" data-intl="dialog.shared.cancel"></button>
</div>
</div>
</body>
</html>