mirror of
https://github.com/skidoodle/taj-validator.git
synced 2025-03-05 20:00:40 +01:00
18 lines
546 B
HTML
18 lines
546 B
HTML
<!DOCTYPE html>
|
|
<html lang="hu">
|
|
<head>
|
|
<title>TAJ Validator</title>
|
|
<meta charset="UTF-8" />
|
|
<meta name="viewport" content="width=device-width, initial-scale=1, maximum-scale=1" />
|
|
<link rel="stylesheet" href="style.css" />
|
|
<script async src="script.js"></script>
|
|
</head>
|
|
<body>
|
|
<h1>TAJ Validator</h1>
|
|
<form>
|
|
<input type="text" id="taj" oninput="restrictInput(this, 'number')" />
|
|
<button type="submit" onclick="checkTAJ()">Ellenőrzés</button>
|
|
</form>
|
|
<p id="result"></p>
|
|
</body>
|
|
</html>
|