Files
naive-keypad/index.html
2023-11-19 12:32:00 +01:00

21 lines
568 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" />
<link rel="stylesheet" href="src/style.css" />
</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.js"></script>
</body>
</html>