-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathinput.html
24 lines (24 loc) · 1.03 KB
/
input.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
<!DOCTYPE HTML>
<html lang="en">
<head>
<title>Connect to Photon</title>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=no">
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/[email protected]/css/bulma.min.css">
<script defer src="./js/input.js"></script>
</head>
<body>
<table border="0" style="border-collapse: collapse; width: 100%;">
<tbody>
<tr>
<td style="width: 100%;"><input type="text" id="uuid" name="uuid" size="45"/></td>
</tr>
<tr><td> </td></tr>
<tr>
<td style="width: 50%; text-align: left;"><button id="ok" type="button" onclick="closeWindow()">Cancel</button></td>
<td style="width: 50%; text-align: right;"><button id="ok" type="button" onclick="sendUUID()">Connect</button></td>
</tr>
</tbody>
</table>
</body>
</html>