-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathindex.html
55 lines (51 loc) · 2.02 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>CSV Processor</title>
<script src="app.js" defer></script>
</head>
<body>
<input type="file" id="input-csv" accept=".csv" style="display:none" />
<button id="upload-button" class="btn btn-primary">Upload CSV</button>
<button id="download-excel" class="btn btn-success" style="display:none">Download Excel</button>
<button id="reload-page" class="btn btn-secondary" style="display:none">Reset Page</button>
<div>
<ul>
<li>
<font color="red">This application runs inside your browser. No data is uploaded to the Internet.</font>
</li>
<li>
This application currently only checks the following services:
<ul>
<li>Virtual Machine/Virtual Machine Scalse Set</li>
<li>Azure Kubernetes Service</li>
<li>SQL Database</li>
<li>Cosmos DB</li>
<li>Synapse Analytics</li>
<li>Azure Database for PostgreSQL - Flexible Server</li>
<li>Azure Database for MySQL - Flexible Server</li>
<li>Cache for Redis</li>
<li>API Management</li>
<li>Azure Firewall</li>
<li>Azure CDN/Azure FrontDoor</li>
<li>Application Gateway</li>
<li>Public IP Address</li>
<li>Virtual Network Gateway</li>
<li>Load Balancer</li>
<li>Storage Account</li>
<li>App Service Plan/App Service/Functions</li>
</ul>
</li>
<li>
<a href="#en">English</a> / <a href="#ja">日本語</a>
</li>
</ul>
</div>
<h2>Issues</h2>
<div id="issues"></div>
<h2>Resources</h2>
<div id="resources"></div>
</body>
</html>