2023-11-23 08:53:28 +00:00
|
|
|
<!DOCTYPE html>
|
|
|
|
<html>
|
|
|
|
<head>
|
|
|
|
<meta charset="utf-8" />
|
|
|
|
<title>HexFlagGen</title>
|
|
|
|
<meta name="viewport" content="width=device-width, initial-scale=1" />
|
|
|
|
<link rel="stylesheet" href="/styles/normal.css" />
|
2023-11-23 17:33:47 +00:00
|
|
|
<link rel="stylesheet" href="/styles/windows.css" />
|
2023-11-23 08:53:28 +00:00
|
|
|
<link rel="stylesheet" href="/styles/style.css" />
|
|
|
|
<style>
|
|
|
|
:root {
|
2023-12-21 06:23:50 +00:00
|
|
|
--base-color: 0, 0%;
|
2023-11-23 08:53:28 +00:00
|
|
|
}
|
|
|
|
</style>
|
|
|
|
</head>
|
|
|
|
<body>
|
|
|
|
<$ loader.html $>
|
2023-11-27 00:58:46 +00:00
|
|
|
<header>
|
|
|
|
<section>
|
|
|
|
<h1>HexFlagGen</h1>
|
|
|
|
<p>Make a flag out of the hexadecimal bytes of your choice.</p>
|
|
|
|
</section>
|
|
|
|
<section id="accessibility" hidden></section>
|
|
|
|
</header>
|
2023-11-23 08:53:28 +00:00
|
|
|
<hr />
|
|
|
|
<section>
|
|
|
|
<label for="data">Generator string</label><br />
|
|
|
|
<input
|
|
|
|
type="text"
|
|
|
|
id="data"
|
|
|
|
value="5BCEFAF5A9B8FFFFFFF5A9B85BCEFABA53"
|
|
|
|
style="width: 100%"
|
|
|
|
/><br />
|
|
|
|
<button id="generateButton">Generate!</button>
|
|
|
|
</section>
|
|
|
|
<section>
|
|
|
|
<input
|
|
|
|
type="number"
|
|
|
|
id="size_width"
|
|
|
|
style="width: 8ch"
|
|
|
|
min="0"
|
|
|
|
max="3000"
|
|
|
|
value="300"
|
|
|
|
/>
|
|
|
|
<label for="size_width">Width (px)</label><br />
|
|
|
|
<input
|
|
|
|
type="number"
|
|
|
|
id="size_height"
|
|
|
|
style="width: 8ch"
|
|
|
|
min="0"
|
|
|
|
max="3000"
|
|
|
|
value="200"
|
|
|
|
/>
|
|
|
|
<label for="size_height">Height (px)</label><br />
|
|
|
|
<select id="flag_type">
|
|
|
|
<option value="horiz">Horizontal</option>
|
|
|
|
<option value="vert" selected>Vertical</option>
|
|
|
|
</select>
|
|
|
|
<label for="flag_type">Flag type</label>
|
|
|
|
</section>
|
|
|
|
<hr />
|
|
|
|
<section>
|
|
|
|
<p>
|
|
|
|
Hex: <code><span id="hexdisplay">...</span></code>
|
|
|
|
</p>
|
|
|
|
</section>
|
2023-11-23 17:33:47 +00:00
|
|
|
<div id="WindowHolder"></div>
|
|
|
|
<section id="accessibility" hidden></section>
|
2023-11-23 17:59:45 +00:00
|
|
|
<script src="./scripts/index.js"></script>
|
2023-11-23 17:33:47 +00:00
|
|
|
<script src="/scripts/windows.js"></script>
|
2023-11-23 08:53:28 +00:00
|
|
|
<script src="/scripts/accessibility.js"></script>
|
|
|
|
<script src="/scripts/interface.js"></script>
|
2023-11-25 01:53:10 +00:00
|
|
|
<script>
|
|
|
|
window.manager = new WindowManager(
|
|
|
|
document.getElementById("WindowHolder")
|
|
|
|
);
|
|
|
|
</script>
|
2023-11-23 08:53:28 +00:00
|
|
|
</body>
|
|
|
|
</html>
|