Skip to content

Commit

Permalink
feat - bit39 dotmap
Browse files Browse the repository at this point in the history
  • Loading branch information
rhannachi committed Jul 26, 2024
1 parent b0a4a1f commit fe1ed36
Show file tree
Hide file tree
Showing 3 changed files with 637 additions and 0 deletions.
51 changes: 51 additions & 0 deletions index.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,51 @@
<!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="src/style.css" />
</head>
<body>
<h1>Bip39 Dotmap</h1>

<table>
<tr>
<th>Column1</th>
<th>Column2</th>
<th>Column3</th>
<th>Word</th>
</tr>
<tr>
<td>
<div class="checkbox-group">
<input type="checkbox" id="col1box1" />
<input type="checkbox" id="col1box2" />
<input type="checkbox" id="col1box3" />
<input type="checkbox" id="col1box4" />
</div>
</td>
<td>
<div class="checkbox-group">
<input type="checkbox" id="col2box1" />
<input type="checkbox" id="col2box2" />
<input type="checkbox" id="col2box3" />
<input type="checkbox" id="col2box4" />
</div>
</td>
<td>
<div class="checkbox-group">
<input type="checkbox" id="col3box1" />
<input type="checkbox" id="col3box2" />
<input type="checkbox" id="col3box3" />
<input type="checkbox" id="col3box4" />
</div>
</td>
<td>
<input readonly type="text" id="word" name="word" />
</td>
</tr>
</table>

<script src="src/script.js"></script>
</body>
</html>
Loading

0 comments on commit fe1ed36

Please sign in to comment.