-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathindex.html
More file actions
40 lines (40 loc) · 1.55 KB
/
index.html
File metadata and controls
40 lines (40 loc) · 1.55 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="style.css">
<script src="./index.js"></script>
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=Inter:opsz,wght@14..32,500&display=swap" rel="stylesheet">
<title>Xbox XUID to Minecraft UUID</title>
</head>
<body>
<main class="background">
<div class="container">
<section class="title">
<h1>Xbox XUID to Minecraft UUID</h1>
</section>
<section class="input-box">
<form id="xuid-box">
<input type="text" id="xuid" placeholder="Enter XUID (HEX)"/>
<button onclick="convertXUID">Convert</button>
</form>
</section>
<h3>Minecraft UUID:</h3>
<div class="output-container">
<p id="conversionOutput" class="outputBox"></p>
<button id="copyButton" class="copy-button">Copy</button>
</div>
<div class="command-output">
<p id="commandOutput" class="outputBox"></p>
<button id="copyCommandButton" class="copy-button">Copy</button>
</div>
</div>
<a href="https://github.com/Andrew-DLO" target="_blank" class="github-button">
Andrew-DLO
</a>
</main>
</body>
</html>