-
Notifications
You must be signed in to change notification settings - Fork 1
/
index.html
39 lines (36 loc) · 987 Bytes
/
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<script src="bundle.js"></script>
<title>Cyclon node test</title>
<style>
.grid-container {
display: grid;
grid-template-columns:1fr 1fr;
/*background-color: #2196F3;*/
padding: 5px;
width: 900px;
margin: auto auto;
}
.grid-item {
/*background-color: rgba(255, 255, 255, 0.8);*/
border: 1px solid rgba(0, 0, 0, 0.8);
padding: 10px;
font-size: 16px;
text-align: center;
}
</style>
</head>
<body>
<div>name:<span id="name"></span> </div>
<input type="text" class="grid-item" id="new_name">
<button class="grid-item" onclick="runTest()">Search</button>
<div id="results"></div>
<div>
<textarea name="pointer" id="pointer" cols="30" rows="10"></textarea>
</div>
<button onclick="connectBtnClicked()">Connect</button>
</div>
</body>
</html>