-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
48 lines (40 loc) · 1.25 KB
/
index.html
File metadata and controls
48 lines (40 loc) · 1.25 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
<!doctype html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<link rel="stylesheet" href="/src/styles.css" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Rover</title>
<script type="module" src="/src/main.ts" defer></script>
</head>
<body>
<div class="container" id="first">
<div id="main">
<h5><a href="https://app.viam.com/try" target="_blank">Try Viam</a></h5>
<button id="main-button" disabled="true">Click me</button>
</div>
<div id="api">
<h2>API Configuration Form</h2>
<div class="row">
<form id="api-form">
<div class="form-group">
<label for="api-key">API KEY:</label>
<input type="text" id="api-key" name="apiKey">
</div>
<div class="form-group">
<label for="api-key-id">API KEY ID:</label>
<input type="text" id="api-key-id" name="apiKeyId">
</div>
<div class="form-group">
<label for="app-address">APP ADDRESS:</label>
<input type="text" id="app-address" name="appAddress" required>
</div>
<button type="submit">Submit</button>
</form>
</div>
</div>
<div class="row" id="text-container">
</div>
</div>
</body>
</html>