-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
40 lines (39 loc) · 1.77 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Cloud Permissions Tracker</title>
<link rel="stylesheet" href="./styles.css">
<script src="https://kit.fontawesome.com/a076d05399.js" crossorigin="anonymous"></script>
</head>
<body class="dark">
<div id="theme-toggle-container">
<button id="theme-toggle">Light</button>
<button id="about-toggle">About</button>
</div>
<h1>Kado Permissions Tracker</h1>
<div id="provider-buttons">
<button id="aws-button" class="active">AWS</button>
<button id="azure-button">Azure</button>
<button id="gcp-button">GCP</button>
</div>
<div id="search-container">
<input type="text" id="role-search" placeholder="Search roles...">
</div>
<div id="date-selection">
<label for="snapshot-date">Compare with date:</label>
<input type="date" id="snapshot-date">
<button id="compare-button">Compare</button>
<button id="clear-button">Clear</button>
</div>
<div id="last-snapshot">Last snapshot: <span id="last-snapshot-date"></span></div>
<div id="comparison-results"></div>
<div id="about-page">
<h2>About Kado Permissions Tracker</h2>
<p>Ever wondered what changed on the default roles you were using for your workflows? Use Kado Permissions Tracker to stay up to date with the latest changes.</p>
<p>This tool is part of the Kado ecosystem, created by Janpreet Singh (<a href="https://janpreet.com" target="_blank">janpreet.com</a>). Reach out if you have any questions, and be sure to read the README on the GitHub repository for more information.</p>
</div>
<script src="./script.js"></script>
</body>
</html>