-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathindex.html
94 lines (94 loc) · 3.39 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
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" />
<link rel="shortcut icon" type="image/x-icon" href="favicon.ico" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<script defer type="module" src="/src/main.ts"></script>
<title>Recharge Calculator</title>
</head>
<body>
<main class="app-root">
<div class="container">
<form class="form">
<h1 class="heading-primary">Recharge Calculator</h1>
<h4 class="heading-secondary">
calculate recharge value
<span class="github-link">
•
<a
href="https://github.com/AbdulSamadMalik/recharge-calculator"
>
GitHub
</a>
</span>
</h4>
<fieldset class="controller">
<div class="form-control">
<label class="form-label" for="days"
>Cost <span>(₹)</span></label
>
<input
required
min="0"
id="cost"
name="cost"
type="number"
aria-label="Cost in Rupees"
placeholder="Example: 555"
/>
</div>
<div class="form-control">
<label class="form-label" for="days"
>Data <span>(GB)</span></label
>
<input
required
min="0"
id="data"
name="data"
type="number"
aria-label="Data in Gigabyte"
placeholder="Example: 2"
/>
</div>
<div class="form-control">
<label class="form-label" for="days"
>Validity <span>(days)</span></label
>
<input
required
min="0"
id="days"
name="days"
type="number"
aria-label="Validity of Recharge"
placeholder="Example: 84"
/>
</div>
</fieldset>
<button class="button submit" type="submit">Calculate</button>
<div class="recharge-value hidden">
<span>Recharge </span>
<span>Value</span>
<div class="block" id="value-output">100%</div>
</div>
</form>
</div>
<a
class="fork-button"
href="https://github.com/AbdulSamadMalik/recharge-calculator"
>
<img
loading="lazy"
width="149"
height="149"
src="https://github.blog/wp-content/uploads/2008/12/forkme_left_darkblue_121621.png?resize=149%2C149"
class="attachment-full size-full"
alt="Fork me on GitHub"
data-recalc-dims="1"
/>
</a>
</main>
</body>
</html>