-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathindex.html
More file actions
94 lines (71 loc) · 2.41 KB
/
Copy pathindex.html
File metadata and controls
94 lines (71 loc) · 2.41 KB
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
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Recharge -generator</title>
<link rel="stylesheet" href="./css/style.css" />
</head>
<body>
<div class="wrapper">
<div class="header">
<p class="hero-header">Recharge Card</p>
</div>
<div class="contInp">
<div class="leftsection">
<div class="network">
<label for="selectNetwork" >Select Network</label>
<select name="nets" id="selectNetwork">
<option value=""></option>
<option value="MTN">MTN</option>
<option value="AIRTEL">AIRTEL</option>
<option value="GLO">GLO</option>
<option value="ETISALAT">ETISALAT</option>
</select>
</div>
<div class="amount">
<div class="inpt">
<label for="input-amount">Amount ₦</label>
<input type="number" placeholder=" Input the airtime amount..." id="input-amount">
</div>
</div>
<div class="generate" id ="pinCode">
<!-- <input type="number" placeholder=" Generating..." disabled id="generatedPin"> -->
</div>
<div class="btngen">
<button class="generateBtn" id="generateButn">Generate</button>
<button class="generateBtn" onclick="save()">Save</button>
</div>
</div>
<!-- RIGHT SECTION OF THE INPUT -->
<div class="rightsection">
<div class="recharged">
<label for="rechargePin">Recharge</label>
<div class="boxCode" id="rechargePin">
</div>
</div>
<div class="btngen">
<button class="generateBtn" id="recharge">Recharge</button>
</div>
</div>
</div>
<!-- TABLE SECTIONN.... -->
<table border="1rem">
<thead>
<tr>
<th>S/N</th>
<th>Network</th>
<th>Amount</th>
<th>Code</th>
<th>Recharge Pin</th>
<th>Status</th>
</tr>
</thead>
<tbody id="users-list">
</tbody>
</table>
</div>
</div>
<script src="./js/script.js"></script>
</body>
</html>