18 lines
538 B
HTML
18 lines
538 B
HTML
|
<!DOCTYPE html>
|
||
|
<html lang="en">
|
||
|
<head>
|
||
|
<meta charset="UTF-8">
|
||
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||
|
<title>Pinpad</title>
|
||
|
<link rel="stylesheet" href="./style.css">
|
||
|
|
||
|
<!-- jQuery UI -->
|
||
|
<script src="https://code.jquery.com/jquery-3.6.0.min.js" integrity="sha256-/xUj+3OJU5yExlq6GSYGSHk7tPXikynS7ogEvDej/m4=" crossorigin="anonymous"></script>
|
||
|
</head>
|
||
|
<body>
|
||
|
<div class="container">
|
||
|
<div id="PINcode"></div>
|
||
|
</div>
|
||
|
<script src="./app.js"></script>
|
||
|
</body>
|
||
|
</html>
|