taj-validator/index.html
2023-10-26 19:37:31 +02:00

26 lines
596 B
HTML

<!DOCTYPE html>
<html lang="hu">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>TAJ Validator</title>
<script src="script.js"></script>
<link rel="stylesheet" href="style.css" />
</head>
<body>
<h1>TAJ Validator</h1>
<form>
<input
type="text"
id="taj"
oninput="restrictInput(this, 'number')"
maxlength="9"
required
/>
<button type="button" onclick="checkTAJ()">Ellenőrzés</button>
</form>
<p id="result"></p>
</body>
</html>