-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathvalidate.html
More file actions
24 lines (21 loc) · 838 Bytes
/
validate.html
File metadata and controls
24 lines (21 loc) · 838 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="style.css">
<title>Ticket Validator</title>
</head>
<body>
<div class="container">
<h1>Ticket Validator</h1>
<label for="numberInput"><b>Ticket Number:</b></label>
<input type="text" id="numberInput" placeholder="Enter ticket number">
<button onclick="validateTicket()" class="button">Validate Ticket</button>
<a href="index.html" class="button" style="background: #a9adad10;">Generate</a>
<a href="view.html" class="button"style="background: #a9adad10;"> view</a>
</div>
<div id = "result"></div>
<script src="validate.js" defer></script>
</body>
</html>