-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
39 lines (39 loc) · 1.33 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Document</title>
<script src="main.js" type="module"></script>
</head>
<body>
<h1>Netlify Logs</h1>
<label for="siteId">Site ID</label>
<input type="text" id="siteId" placeholder="Site ID" />
<h2>Deploy Logs</h2>
<button id="connect-deploy-logs">Show Deploy Logs</button>
<div>
<label for="deployId">Deploy ID</label>
<input type="text" id="deployId" placeholder="Deploy ID" />
</div>
<section id="deploy-logs"></section>
<h2>Function Logs</h2>
<button id="connect-function-logs">Show Function Logs</button>
<div>
<label for="functionId">Function ID</label>
<input type="text" id="functionId" placeholder="Function ID" />
</div>
<div>
<label for="accountId">Account ID</label>
<input type="text" id="accountId" placeholder="Account ID" />
</div>
<section id="function-logs"></section>
<h2>Edge Function Logs</h2>
<button id="connect-edge-function-logs">Show Edge Function Logs</button>
<div>
<label for="edgeDeployId">Deploy ID</label>
<input type="text" id="edgeDeployId" placeholder="Deploy ID" />
</div>
<section id="edge-function-logs"></section>
</body>
</html>