-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
65 lines (61 loc) · 2.39 KB
/
index.html
File metadata and controls
65 lines (61 loc) · 2.39 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
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=100%, initial-scale=1.0">
<title>WrapperIDX endpoint generator</title>
<link
href="https://cdn.jsdelivr.net/npm/bootstrap@5.0.0-beta1/dist/css/bootstrap.min.css"
rel="stylesheet"
integrity="sha384-giJF6kkoqNQ00vy+HMDP7azOuL0xtbfIcaT9wjKHr8RbDVddVHyTfAAsrekwKmP1"
crossorigin="anonymous"
/>
<link rel="stylesheet" href="/dist/css/main.css" class="rel" />
<script src="https://kit.fontawesome.com/08fc1ca827.js" crossorigin="anonymous"></script>
<script src="/assets/js/Wrapper.js"></script>
</head>
<body>
<main>
<section id="calculator">
<div class="app calculator">
<h1>Wrapper endpoint creator</h1>
<div class="inputs">
<div class="row input-fields">
<label class="badge-dark col-1">URL</label>
<input class="col-11" type="url" name="url" id="url" placeholder="http://"/>
</div>
<div class="row input-fields">
<label for="className" class="badge-dark col-1">Class</label>
<input class="col-6" type="text" name="className" id="className" placeholder="Class Name"/>
</div>
<div class="row input-fields">
<label for="idName" class="badge-dark col-1">ID</label>
<input class="col-6"type="text" name="idName" id="idName" placeholder="ID Name"/>
</div>
<div class="row calc-buttons">
<div class="col">
<button class="button cal" onclick="doMath('1')">Class</button>
<button class="button cal" onclick="doMath('2')">ID</button>
<button class="button cal" onclick="cleary()">Clear</button>
</div>
</div>
<div class="row">
<label for="output" class="badge-dark col-4">Output</label>
<input class="text-black-50 answer" type="text" value="" name="output" id="output" onclick="copy()">
</input>
</div>
</div>
</section>
<section>
<div id="toast">
<h4>
Copied
</h4>
<code id="copyUrl"></code>
<p>to your clipboard</p>
</div>
</section>
</main>
</body>
</html>