-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
81 lines (80 loc) · 2.15 KB
/
index.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
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<title>Goooi-Querioor</title>
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/ionicons/2.0.1/css/ionicons.css" />
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/font-awesome/4.6.3/css/font-awesome.min.css" />
<link rel="stylesheet" href="./style.css" />
<link rel="icon" type="image/x-icon" href="Favicon.png" />
</head>
<body>
<!-- partial:index.partial.html -->
<div class="signupSection">
<div class="info">
<h2>Indexooor</h2>
<img class="icon" src="HomeIcon.png" alt="Logo" />
<p>Goooi Queriooor Service</p>
<div id="fetchedData"></div>
</div>
<form onsubmit="return false" class="signupForm" name="signupform">
<h2>Queriooor Url</h2>
<ul class="noBullet">
<li>
<label for="url"></label>
<input
type="text"
class="inputFields"
id="url"
name="url"
placeholder="Url"
value=""
oninput="return urlValidation(this.value)"
required
/>
</li>
</ul>
<h2>Query Variable</h2>
<ul class="noBullet">
<li>
<label for="contractaddress"></label>
<input
type="text"
class="inputFields"
id="contractaddress"
name="contractaddress"
placeholder="contractaddress"
value=""
required
/>
</li>
<li>
<label for="variablename"></label>
<input
type="text"
class="inputFields"
id="variablename"
name="variablename"
placeholder="variablename"
value=""
required
/>
</li>
<li>
<label for="key"></label>
<input type="text" class="inputFields" id="key" name="key" placeholder="key" value="" />
</li>
<li>
<label for="deepkey"></label>
<input type="text" class="inputFields" id="deepkey" name="deepkey" placeholder="deepkey" value="" />
</li>
<li id="center-btn">
<input type="submit" id="join-btn" name="query" alt="Query" value="Query" onclick="submitForm()" />
</li>
</ul>
</form>
</div>
<!-- partial -->
<script src="./script.js"></script>
</body>
</html>