-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathindex.html
75 lines (68 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
<html>
<head>
<meta charset="UTF-8" />
<link rel="stylesheet" type="text/css" href="styles.css" />
<script src="https://unpkg.com/@radicalbit/[email protected]/lib/helicon-sdk.umd.min.js"></script>
<script src="./script.js"></script>
</head>
<body>
<form id="form">
<h1>Helicon JavaScript Sample App</h1>
<nav>
<ul>
<li>
<span onclick="changeUrl('/')" style="cursor: pointer">Home</span>
</li>
<li>
<span
onclick="changeUrl('pageWithUtmTerms/?utm_source=summer-mailer&utm_medium=wrong&utm_campaign=summer-sale&utm_term=termineprova1&utm_term=termineprova2&utm_content=content&utm_medium=right')"
style="cursor: pointer"
>
UtmTerms test</span
>
</li>
</ul>
</nav>
<div>
<label htmlFor="host">host</label><br/>
<input type="text" id="host" name="host" value="" />
</div>
<div>
<label htmlFor="port">port</label><br/>
<input type="number" id="port" name="port" value="443" />
</div>
<div>
<label htmlFor="protocol">protocol</label><br/>
<select type="number" id="protocol" name="protocol">
<option value="https">https</option>
<option value="http">http</option>
</select>
</div>
<div>
<label for="tenant">Tenant</label><br />
<input type="text" id="tenant" name="tenant" value="" />
</div>
<div>
<label for="clientId">clientId</label><br />
<input type="text" id="clientId" name="client Id" value="" />
</div>
<div>
<label for="displayName">Stream name</label><br />
<input type="text" id="displayName" name="displayName" value="" />
</div>
<div>
<label for="payload">Record</label><br />
<textarea id="payload" rows="7" cols="30" name="payload">
{
"value1": "foo",
"value2": 2
}</textarea>
</div>
<div>
<button type="button" onclick="onSubmit()">Submit</button>
</div>
<br />
<span id="result"></span>
</form>
</body>
</html>