mirror of
https://github.com/skidoodle/cc-validator.git
synced 2025-02-15 05:39:14 +01:00
first commit
This commit is contained in:
commit
6c3255f2bb
3 changed files with 112 additions and 0 deletions
18
index.html
Normal file
18
index.html
Normal file
|
@ -0,0 +1,18 @@
|
|||
<!DOCTYPE html>
|
||||
<html lang="en">
|
||||
<head>
|
||||
<title>CC 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>CC Validator</h1>
|
||||
<form>
|
||||
<input type="text" id="cc" oninput="restrictInput(this, 'number')" />
|
||||
<button type="submit" onclick="checkCC()">Validate</button>
|
||||
</form>
|
||||
<p id="result"></p>
|
||||
</body>
|
||||
</html>
|
Loading…
Add table
Add a link
Reference in a new issue