-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathboris.html
More file actions
39 lines (31 loc) · 1.04 KB
/
boris.html
File metadata and controls
39 lines (31 loc) · 1.04 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
<!DOCTYPE html>
<html lang="fr">
<head>
<meta charset="UTF-8">
<title>URL Generator</title>
<link rel="stylesheet" href="style.css">
<!-- Firebase compat -->
<script src="https://www.gstatic.com/firebasejs/9.23.0/firebase-app-compat.js"></script>
<script src="https://www.gstatic.com/firebasejs/9.23.0/firebase-firestore-compat.js"></script>
</head>
<body>
<div class="back-button">
<button onclick="location.href='index.html'">Back</button>
</div>
<div class="container">
<h1>FEN Generator</h1>
<div class="input-group">
<input type="text" id="fenInput" placeholder="Enter FEN here">
<input type="text" id="noteInput" placeholder="Note (optionnel)">
</div>
<div class="color-choice">
<label><input type="radio" name="color" value="white" checked> White</label>
<label><input type="radio" name="color" value="black"> Black</label>
</div>
<button id="generateBtn">Save</button>
<h2>Saved URLs</h2>
<div id="output"></div>
</div>
<script src="script.js"></script>
</body>
</html>