-
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathticket-gen.html
30 lines (30 loc) · 1.25 KB
/
ticket-gen.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
<!doctype html>
<html>
<head>
<meta charset="utf-8" />
<meta name="description" content="Online Tambola" />
<meta name="keywords" content="tambola, bingo, online, play, generator">
<meta name="author" content="AjaxFire">
<link rel="stylesheet" type="text/css" href="tambola.css" />
<title>Online Tambola Ticket Generator</title>
</head>
<body>
<div class="tg-body">
<div class="tg-header"><h1>Tambola Ticket Generator</h1></div>
<form class="tg-clicker" >
<label for="inputTickets" class="tg-msg">Select the Number of Tickets</label>
<input id="inputTickets" required type="number" min="1" max="500" placeholder="Enter a number between 1 and 500"></input><span></span>
<input type="submit" id="btnSubmit" value="Generate Tickets" class="tg-btn"></input>
</form>
<button class="tg-btn" id="printBtn">Print Tickets</button>
<div id="tambolaTable" class="tg-table"></div>
<div class="subscript">
<a href="./index.html" target="_blank">Tambola Number Generator</a>
</div>
<div class="subscript">Source Code available here:
<a href="/~https://github.com/Ajaxfire/tambola/" target="_blank">AjaxFire - Tambola</a>
</div>
</div>
<script type="text/javascript" src="ticketgen.js"></script>
</body>
</html>