-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
47 lines (35 loc) · 1.26 KB
/
Copy pathindex.html
File metadata and controls
47 lines (35 loc) · 1.26 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">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Push - Mikeylab</title>
<link rel="stylesheet" href="styles.css" />
<link rel="icon" href="/favicon.png" />
<link rel="manifest" href="/manifest.json" />
</head>
<body>
<h1>Mikeylab Push</h1>
<div id="main">Loading...</div>
<section id="cli-builder">
<h2>CLI builder</h2>
<div class="inp-grp">
<span>Title:</span>
<input id="title" type="text" />
</div>
<div class="inp-grp">
<span>Body:</span>
<input id="body" type="text" />
</div>
<button id="cli-submit">Build Command</button>
<section id="cli-results">
<input id="cli-result" type="text" disabled />
<button id="cli-copy">Copy Command</button>
</section>
</section>
<footer>
<span class="attribs">Icon courtesy of <a href="https://pixabay.com/vectors/bell-jar-notification-communication-1096280/" target="_blank">IO-Images</a> on Pixabay; <a href="https://mikeylab.com/attrib.html">more attributions</a></span>
</footer>
<script type="module" src="src/script.ts"></script>
</body>
</html>