Files
naive-keypad/index.html
2023-10-31 18:33:00 +01:00

20 lines
518 B
HTML

<!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>