-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
61 lines (61 loc) · 2.37 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
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>MinecraftSeeds</title>
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/5.15.3/css/all.min.css">
<link rel="stylesheet" href="styles.css">
<link rel="icon" href="site-data/favicon.ico" type="image/x-icon">
<link rel="apple-touch-icon" sizes="180x180" href="site-data/apple-touch-icon.png">
<link rel="icon" type="image/png" sizes="32x32" href="site-data/favicon-32x32.png">
<link rel="icon" type="image/png" sizes="16x16" href="site-data/favicon-16x16.png">
<link rel="manifest" href="site-data/site.webmanifest">
</head>
<body>
<header>
<div class="toggle-container">
<i class="fas fa-sun"></i>
<div class="theme-toggle">
<input type="checkbox" id="theme-toggle" class="theme-toggle-input">
<label for="theme-toggle" class="theme-toggle-label"></label>
</div>
<i class="fas fa-moon"></i>
</div>
</header>
<main>
<div class="container">
<h1>Minecraft Seed Generator</h1>
<div class="sentence-container">
<p id="sentence"></p>
</div>
<div class="input-container">
<input type="text" id="word-input" placeholder="Enter a word (max 16 characters)" maxlength="16" pattern="[a-zA-Z\s]*">
<span id="character-count">0/16</span>
</div>
<div class="slider-container">
<label for="seed-length">Seed Length:</label>
<input type="range" id="seed-length" min="1" max="32" value="16">
</div>
<button id="generate-btn">Generate Seed</button>
<div id="last-seeds-container" class="hidden">
<h2>Last 5 Generated Seeds</h2>
<div id="last-seeds-list"></div>
<button id="copy-all-btn">Copy the last 5 seeds</button>
</div>
</div>
</main>
<footer>
<a href="https://discord.gg/2nHHHBWNDw" target="_blank">
<i class="fab fa-discord"></i>
</a>
<a href="https://ko-fi.com/thatsinewave" target="_blank">
<i class="fas fa-heart"></i>
</a>
<a href="https://github.com/ThatSINEWAVE/MinecraftSeeds" target="_blank">
<i class="fab fa-github"></i>
</a>
</footer>
<script src="script.js"></script>
</body>
</html>