-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathindex.html
72 lines (59 loc) · 2.35 KB
/
index.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
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1">
<meta name="viewport" content="width=device-width, initial-scale=1">
<meta name="application-name" content="Generate and validate scratch cards">
<meta name="author" content="Khalid Ahmed Shalabi">
<meta name="description" content="">
<meta name="keywords" content="">
<title>Generate and validate scratch cards</title>
<script src="js/jquery-3.1.0.min.js"></script>
<script src="js/twist.js"></script>
<link rel="stylesheet" type="text/css" href="css/font-awesome.min.css">
<link rel="stylesheet" type="text/css" href="css/main.css">
<link rel="stylesheet" type="text/css" href="css/responsive.css">
</head>
<body>
<h1>Logs...</h1>
<div class="inputs_wrapper">
<input id="new_card" type="number" value="" placeholder="Amount of the new card" size="3" maxlength="3">
<input id="check_card" type="number" value="" placeholder="A card number to check" size="17" maxlength="17">
</div>
<div class="logs_wrapper"></div>
<div class="compatibility_error">
<div>Your browser does not suppport ES6 features</div>
</div>
<!--ul class="tabs">
<li class="tab">
<input type="radio" name="tabs" checked="checked" id="tab1" />
<label id="label1" for="tab1">Create</label>
<div id="tab-content1" class="content">
<h3 class="header">Create new cards</h3>
Create <input type="number" value="3" size="3" maxlength="3"> cards with a recharge value of <input type="number" value="50" size="3" maxlength="3">
</div>
</li>
<li class="tab">
<input type="radio" name="tabs" id="tab2" />
<label id="label2" for="tab2">Use</label>
<div id="tab-content2" class="content">
<h3 class="header">Use cards</h3>
test2
</div>
</li>
<li class="tab">
<input type="radio" name="tabs" id="tab3" />
<label id="label3" for="tab3">List</label>
<div id="tab-content3" class="content">
<h3 class="header">List all created cards</h3>
test3
</div>
</li>
</ul-->
</body>
<script src="js/luhn_algorithm.js"></script>
<script src="js/main.js"></script>
<script src="js/ui.js"></script>
<script src="js/responsive.js"></script>
</html>