-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
78 lines (72 loc) · 2.16 KB
/
index.html
File metadata and controls
78 lines (72 loc) · 2.16 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
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
<!DOCTYPE html>
<html lang="en" data-theme="auto">
<head>
<meta charset="UTF-8" />
<link rel="icon" type="image/svg+xml" href="github-compare.svg" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>GitHub Compare</title>
</head>
<body>
<main class="container">
<header>
<hgroup>
<h1>
GitHub
<img src="github-compare.svg" alt="" class="inline-icon" />
Compare
</h1>
<p>Compare release notes</p>
</hgroup>
</header>
<details>
<summary>⚙️ Settings</summary>
<fieldset class="grid">
<label>
Switch theme
<button name="theme" class="secondary" title="">🌓</button>
</label>
<label>
Show Pre-releases
<input name="show-prereleases" type="checkbox" role="switch" />
</label>
</fieldset>
</details>
<section>
<fieldset class="grid">
<div class="pico-searchbox">
<input
name="repo"
type="text"
placeholder="owner/repo"
aria-label="Repository"
autocomplete="off"
/>
</div>
<select name="from" aria-label="Select your version" required>
<option selected disabled value="">
No versions available...
</option>
</select>
<select name="to" aria-label="Select your version" required>
<option selected disabled value="">
No versions available...
</option>
</select>
<input name="compare" type="submit" value="Compare" />
</fieldset>
</section>
<section id="results"></section>
<footer>
<a
href="https://github.com/idelsink/github-compare"
target="_blank"
id="github-star"
>
⭐ Star on GitHub
</a>
</footer>
</main>
<script src="https://cdn.jsdelivr.net/npm/datalist-ajax/dist/datalist-ajax.min.js"></script>
<script type="module" src="/src/main.mjs"></script>
</body>
</html>