Initial commit

This commit is contained in:
2023-10-31 18:31:52 +01:00
commit a78c2ce1c7
7 changed files with 226 additions and 0 deletions

19
index.html Normal file
View File

@@ -0,0 +1,19 @@
<!doctype html>
<html lang="fr">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Digicode</title>
<meta name="description" content="Spot the security flaw in a naive pin lock" />
</head>
<body>
<div id="app">
<div id="output">
<div id="display"></div>
<div id="light"></div>
</div>
<div id="keypad"></div>
</div>
<script type="module" src="/src/digicode.ts"></script>
</body>
</html>