-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
46 lines (38 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
40
41
42
43
44
45
46
<!DOCTYPE HTML>
<html lang="en">
<head>
<title>JCS Switch Banner Creator</title>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta name="description" content="Creates login banners for JCS' ExtremeOS switches.">
<link rel="icon" type="image/png" href="assets/favicon.png">
<link rel="stylesheet" href="styles/fonts.css">
<link rel="stylesheet" href="styles/base.css">
<link rel="stylesheet" href="styles/style.css">
<link rel="stylesheet" href="styles/input.css">
<link rel="stylesheet" href="styles/tool-info.css">
<script defer src="js/main.js" type="module"></script>
</head>
<body>
<h1 id="header">Switch Banner Creator</h1>
<div id="composite-input">
<select id="school-select">
<option class="default-select">school...</option>
</select>
<input id="wiring-closet" type="text" placeholder="switch name...">
<select id="closet-type-select">
<option class="default-select">closet type...</option>
<option>MDF</option>
<option>IDF</option>
</select>
</div>
<pre id="output" contenteditable="true"></pre>
<div id="tool-wrapper">
<div id="tool-info">
<span id="info-icon">ⓘ</span>
<p id="made-by">Made by Layne Ogden - Summer 2023</p>
<span id="last-updated">Loading version...</span>
</div>
</div>
</body>
</html>