-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathindex.html
416 lines (406 loc) · 17.2 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
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8" />
<meta
name="viewport"
content="width=device-width, initial-scale=1.0, shrink-to-fit=no"
/>
<title>BI App | The Bounded Integer App</title>
<meta
name="description"
content="Bounded Integer App developed by Syed Faateh Sultan Kazmi"
/>
<link rel="stylesheet" href="assets/bootstrap/css/bootstrap.min.css" />
<link
rel="stylesheet"
href="https://fonts.googleapis.com/css?family=Catamaran:100,200,300,400,500,600,700,800,900"
/>
<link
rel="stylesheet"
href="https://fonts.googleapis.com/css?family=Lato:100,100i,300,300i,400,400i,700,700i,900,900i"
/>
<link rel="icon" type="image/png" href="assets/img/favicon.png" />
<style>
button,
input,
span {
outline: none;
}
</style>
</head>
<body>
<nav
id="top-navbar"
class="navbar navbar-dark navbar-expand-lg fixed-top navbar-custom"
>
<div class="container">
<a class="navbar-brand" href="index.html">The BI App</a
><button
data-toggle="collapse"
class="navbar-toggler"
data-target="#navbarResponsive"
>
<span class="navbar-toggler-icon"></span>
</button>
<div class="collapse navbar-collapse" id="navbarResponsive">
<ul class="nav navbar-nav ml-auto">
<li class="nav-item" role="presentation">
<a class="nav-link" onclick="toDevPage();">DEVELOPER</a>
</li>
</ul>
</div>
</div>
</nav>
<!-- WELCOME -->
<header id="welcome-page" class="masthead text-center text-white">
<div class="masthead-content">
<div class="container">
<h1 class="masthead-heading mb-0">The BI App</h1>
<h2 class="masthead-subheading mb-0">Bounded Integer App for free</h2>
<button
class="btn btn-primary btn-xl rounded-pill mt-5"
type="button"
onclick="welcomeToEntry();"
>
GET STARTED
</button>
</div>
</div>
<div class="bg-circle-1 bg-circle"></div>
<div class="bg-circle-2 bg-circle"></div>
<div class="bg-circle-3 bg-circle"></div>
<div class="bg-circle-4 bg-circle"></div>
</header>
<!-- ENTRY -->
<header
style="display: none;"
id="entry-page"
class="masthead text-center text-white"
>
<div class="masthead-content">
<div class="container">
<h1 class="masthead-subheading mb-0" style="font-size: 55px;">
Enter Bounds
</h1>
<div
class="row row-cols-4 justify-content-center align-items-center"
style="margin-top: 25px;"
>
<div class="col-auto col-xl-3 align-self-center">
<input
type="number"
placeholder="Lower Bound"
name="lower-bound"
id="lower-bound"
style="
font-size: 20px;
padding: 8px;
text-align: center;
border-width: 0px;
border-radius: 30px;
margin-bottom: 30px;
"
/>
</div>
<div class="col-auto align-self-center">
<input
type="number"
placeholder="Upper Bound"
name="upper-bound"
id="upper-bound"
style="
padding: 8px;
font-size: 20px;
text-align: center;
border-width: 0px;
border-radius: 30px;
margin-bottom: 30px;
"
/>
</div>
</div>
<button
class="btn btn-primary btn-xl rounded-pill mt-5"
type="button"
style="font-size: 24px;"
onclick="entryToApp();"
id="bound-submit"
>
<strong>Start</strong><br />
</button>
</div>
<div></div>
</div>
<p id="invalid-bounds"></p>
<div class="bg-circle-1 bg-circle"></div>
<div class="bg-circle-2 bg-circle"></div>
<div class="bg-circle-3 bg-circle"></div>
<div class="bg-circle-4 bg-circle"></div>
</header>
<!-- APP -->
<header
style="display: none;"
id="app-page"
class="masthead text-center text-white"
>
<div class="masthead-content">
<div class="container">
<h2 style="font-size: 36px;">
Start playing with Bounded Integers!
</h2>
<div class="row">
<div class="col" style="margin-top: 10px;">
<h2
id="current-value"
style="
font-size: 70px;
text-align: center;
border-width: 0px;
border-radius: 120px;
padding: 14px;
text-shadow: 2px 2px 10px #000000;
"
></h2>
</div>
</div>
<div class="row justify-content-center align-items-center">
<div class="col-auto">
<button
class="btn btn-primary btn-xl rounded-pill"
type="button"
id="decrement-button"
onclick="decrement();"
style="
font-size: 39px;
padding: 11px;
margin-top: 0px;
width: 90px;
"
>
<strong>▼</strong><br />
</button>
</div>
<div class="col-auto align-self-center">
<button
class="btn btn-primary btn-xl rounded-pill"
type="button"
id="increment-button"
onclick="increment();"
style="
font-size: 39px;
padding: 11px;
margin-top: 0px;
width: 90px;
"
>
<strong>▲</strong>
</button>
</div>
</div>
<div
class="row justify-content-center align-items-center"
style="margin-top: 25px;"
>
<div class="col-auto col-xl-3 align-self-center">
<input
type="number"
placeholder="Custom Decrement = 1"
name="decrement-value"
id="decrement-value"
style="
font-size: 20px;
padding: 8px;
text-align: center;
border-width: 0px;
border-radius: 30px;
margin-bottom: 30px;
"
/>
</div>
<div class="col-auto align-self-center">
<input
type="number"
placeholder="Custom Increment = 1"
name="increment-value"
id="increment-value"
style="
padding: 8px;
font-size: 20px;
text-align: center;
border-width: 0px;
border-radius: 30px;
margin-bottom: 30px;
"
/>
</div>
</div>
</div>
<div class="row">
<div class="col align-self-center">
<button
class="btn btn-primary btn-xl rounded-pill mt-5"
type="button"
onclick="resetAll();"
style="font-size: 24px; padding: 17px;"
>
<strong>RESET ALL</strong><br />
</button>
</div>
</div>
</div>
<div class="bg-circle-1 bg-circle"></div>
<div class="bg-circle-2 bg-circle"></div>
<div class="bg-circle-3 bg-circle"></div>
<div class="bg-circle-4 bg-circle"></div>
</header>
<!-- DEVELOPER -->
<header
style="display: none;"
id="dev-page"
class="masthead text-center text-white"
>
<div class="container">
<div
class="jumbotron text-center"
style="background-color: rgba(255, 255, 255, 0.3);"
>
<h1>Developer</h1>
<p style="font-size: 18px;">
<strong>This project is developed by </strong>
<a
class="text-light"
href="https://github.com/faatehsultan"
target="_blank"
style="font-size: 20px;"
>
<strong>Syed Faateh Sultan Kazmi</strong></a
><strong> </strong>
</p>
<p class="text-left">
<strong>Click the following links to contact developer:</strong>
</p>
<div class="row">
<div class="col-xl-2">
<a
href="https://www.facebook.com/faatehsultan.kazmi"
target="_blank"
><svg
class="social-icon-dev"
xmlns="http://www.w3.org/2000/svg"
viewBox="0 0 448 512"
>
<path
d="M400 32H48A48 48 0 0 0 0 80v352a48 48 0 0 0 48 48h137.25V327.69h-63V256h63v-54.64c0-62.15 37-96.48 93.67-96.48 27.14 0 55.52 4.84 55.52 4.84v61h-31.27c-30.81 0-40.42 19.12-40.42 38.73V256h68.78l-11 71.69h-57.78V480H400a48 48 0 0 0 48-48V80a48 48 0 0 0-48-48z"
/></svg
></a>
</div>
<div class="col-xl-2">
<a href="https://www.twitter.com/faatehsultan" target="_blank"
><svg
class="social-icon-dev"
xmlns="http://www.w3.org/2000/svg"
viewBox="0 0 512 512"
>
<path
d="M459.37 151.716c.325 4.548.325 9.097.325 13.645 0 138.72-105.583 298.558-298.558 298.558-59.452 0-114.68-17.219-161.137-47.106 8.447.974 16.568 1.299 25.34 1.299 49.055 0 94.213-16.568 130.274-44.832-46.132-.975-84.792-31.188-98.112-72.772 6.498.974 12.995 1.624 19.818 1.624 9.421 0 18.843-1.3 27.614-3.573-48.081-9.747-84.143-51.98-84.143-102.985v-1.299c13.969 7.797 30.214 12.67 47.431 13.319-28.264-18.843-46.781-51.005-46.781-87.391 0-19.492 5.197-37.36 14.294-52.954 51.655 63.675 129.3 105.258 216.365 109.807-1.624-7.797-2.599-15.918-2.599-24.04 0-57.828 46.782-104.934 104.934-104.934 30.213 0 57.502 12.67 76.67 33.137 23.715-4.548 46.456-13.32 66.599-25.34-7.798 24.366-24.366 44.833-46.132 57.827 21.117-2.273 41.584-8.122 60.426-16.243-14.292 20.791-32.161 39.308-52.628 54.253z"
/></svg
></a>
</div>
<div class="col-xl-2">
<a href="https://www.github.com/faatehsultan" target="_blank"
><svg
class="social-icon-dev"
xmlns="http://www.w3.org/2000/svg"
viewBox="0 0 496 512"
>
<path
d="M165.9 397.4c0 2-2.3 3.6-5.2 3.6-3.3.3-5.6-1.3-5.6-3.6 0-2 2.3-3.6 5.2-3.6 3-.3 5.6 1.3 5.6 3.6zm-31.1-4.5c-.7 2 1.3 4.3 4.3 4.9 2.6 1 5.6 0 6.2-2s-1.3-4.3-4.3-5.2c-2.6-.7-5.5.3-6.2 2.3zm44.2-1.7c-2.9.7-4.9 2.6-4.6 4.9.3 2 2.9 3.3 5.9 2.6 2.9-.7 4.9-2.6 4.6-4.6-.3-1.9-3-3.2-5.9-2.9zM244.8 8C106.1 8 0 113.3 0 252c0 110.9 69.8 205.8 169.5 239.2 12.8 2.3 17.3-5.6 17.3-12.1 0-6.2-.3-40.4-.3-61.4 0 0-70 15-84.7-29.8 0 0-11.4-29.1-27.8-36.6 0 0-22.9-15.7 1.6-15.4 0 0 24.9 2 38.6 25.8 21.9 38.6 58.6 27.5 72.9 20.9 2.3-16 8.8-27.1 16-33.7-55.9-6.2-112.3-14.3-112.3-110.5 0-27.5 7.6-41.3 23.6-58.9-2.6-6.5-11.1-33.3 2.6-67.9 20.9-6.5 69 27 69 27 20-5.6 41.5-8.5 62.8-8.5s42.8 2.9 62.8 8.5c0 0 48.1-33.6 69-27 13.7 34.7 5.2 61.4 2.6 67.9 16 17.7 25.8 31.5 25.8 58.9 0 96.5-58.9 104.2-114.8 110.5 9.2 7.9 17 22.9 17 46.4 0 33.7-.3 75.4-.3 83.6 0 6.5 4.6 14.4 17.3 12.1C428.2 457.8 496 362.9 496 252 496 113.3 383.5 8 244.8 8zM97.2 352.9c-1.3 1-1 3.3.7 5.2 1.6 1.6 3.9 2.3 5.2 1 1.3-1 1-3.3-.7-5.2-1.6-1.6-3.9-2.3-5.2-1zm-10.8-8.1c-.7 1.3.3 2.9 2.3 3.9 1.6 1 3.6.7 4.3-.7.7-1.3-.3-2.9-2.3-3.9-2-.6-3.6-.3-4.3.7zm32.4 35.6c-1.6 1.3-1 4.3 1.3 6.2 2.3 2.3 5.2 2.6 6.5 1 1.3-1.3.7-4.3-1.3-6.2-2.2-2.3-5.2-2.6-6.5-1zm-11.4-14.7c-1.6 1-1.6 3.6 0 5.9 1.6 2.3 4.3 3.3 5.6 2.3 1.6-1.3 1.6-3.9 0-6.2-1.4-2.3-4-3.3-5.6-2z"
/></svg
></a>
</div>
<div class="col-xl-2">
<a
href="https://www.linkedin.com/in/faatehsultankazmi"
target="_blank"
><svg
class="social-icon-dev"
xmlns="http://www.w3.org/2000/svg"
viewBox="0 0 448 512"
>
<path
d="M416 32H31.9C14.3 32 0 46.5 0 64.3v383.4C0 465.5 14.3 480 31.9 480H416c17.6 0 32-14.5 32-32.3V64.3c0-17.8-14.4-32.3-32-32.3zM135.4 416H69V202.2h66.5V416zm-33.2-243c-21.3 0-38.5-17.3-38.5-38.5S80.9 96 102.2 96c21.2 0 38.5 17.3 38.5 38.5 0 21.3-17.2 38.5-38.5 38.5zm282.1 243h-66.4V312c0-24.8-.5-56.7-34.5-56.7-34.6 0-39.9 27-39.9 54.9V416h-66.4V202.2h63.7v29.2h.9c8.9-16.8 30.6-34.5 62.9-34.5 67.2 0 79.7 44.3 79.7 101.9V416z"
/></svg
></a>
</div>
<div class="col-xl-2">
<a href="https://www.instagram.com/faateh.sultan" target="_blank"
><svg
class="social-icon-dev"
xmlns="http://www.w3.org/2000/svg"
viewBox="0 0 448 512"
>
<path
d="M224,202.66A53.34,53.34,0,1,0,277.36,256,53.38,53.38,0,0,0,224,202.66Zm124.71-41a54,54,0,0,0-30.41-30.41c-21-8.29-71-6.43-94.3-6.43s-73.25-1.93-94.31,6.43a54,54,0,0,0-30.41,30.41c-8.28,21-6.43,71.05-6.43,94.33S91,329.26,99.32,350.33a54,54,0,0,0,30.41,30.41c21,8.29,71,6.43,94.31,6.43s73.24,1.93,94.3-6.43a54,54,0,0,0,30.41-30.41c8.35-21,6.43-71.05,6.43-94.33S357.1,182.74,348.75,161.67ZM224,338a82,82,0,1,1,82-82A81.9,81.9,0,0,1,224,338Zm85.38-148.3a19.14,19.14,0,1,1,19.13-19.14A19.1,19.1,0,0,1,309.42,189.74ZM400,32H48A48,48,0,0,0,0,80V432a48,48,0,0,0,48,48H400a48,48,0,0,0,48-48V80A48,48,0,0,0,400,32ZM382.88,322c-1.29,25.63-7.14,48.34-25.85,67s-41.4,24.63-67,25.85c-26.41,1.49-105.59,1.49-132,0-25.63-1.29-48.26-7.15-67-25.85s-24.63-41.42-25.85-67c-1.49-26.42-1.49-105.61,0-132,1.29-25.63,7.07-48.34,25.85-67s41.47-24.56,67-25.78c26.41-1.49,105.59-1.49,132,0,25.63,1.29,48.33,7.15,67,25.85s24.63,41.42,25.85,67.05C384.37,216.44,384.37,295.56,382.88,322Z"
/></svg
></a>
</div>
<div class="col-xl-2">
<a href="http://www.faatehsultan.live" target="_blank"
><svg
class="social-icon-dev"
xmlns="http://www.w3.org/2000/svg"
viewBox="0 0 496 512"
>
<path
d="M336.5 160C322 70.7 287.8 8 248 8s-74 62.7-88.5 152h177zM152 256c0 22.2 1.2 43.5 3.3 64h185.3c2.1-20.5 3.3-41.8 3.3-64s-1.2-43.5-3.3-64H155.3c-2.1 20.5-3.3 41.8-3.3 64zm324.7-96c-28.6-67.9-86.5-120.4-158-141.6 24.4 33.8 41.2 84.7 50 141.6h108zM177.2 18.4C105.8 39.6 47.8 92.1 19.3 160h108c8.7-56.9 25.5-107.8 49.9-141.6zM487.4 192H372.7c2.1 21 3.3 42.5 3.3 64s-1.2 43-3.3 64h114.6c5.5-20.5 8.6-41.8 8.6-64s-3.1-43.5-8.5-64zM120 256c0-21.5 1.2-43 3.3-64H8.6C3.2 212.5 0 233.8 0 256s3.2 43.5 8.6 64h114.6c-2-21-3.2-42.5-3.2-64zm39.5 96c14.5 89.3 48.7 152 88.5 152s74-62.7 88.5-152h-177zm159.3 141.6c71.4-21.2 129.4-73.7 158-141.6h-108c-8.8 56.9-25.6 107.8-50 141.6zM19.3 352c28.6 67.9 86.5 120.4 158 141.6-24.4-33.8-41.2-84.7-50-141.6h-108z"
/></svg
></a>
</div>
</div>
<p style="font-size: 18px;">
If any bug found, please report it to developer
</p>
<p style="font-size: 16px;">
To contribute, make pull request on Github
</p>
<button
class="btn btn-primary btn-xl rounded-pill mt-5"
type="button"
onclick="resetAll();"
>
HOME
</button>
</div>
</div>
</header>
<footer class="py-5 bg-black">
<div class="container" id="mobile-app-download">
<div class="row justify-content-center align-items-center">
<a
class="btn btn-primary btn-xl rounded-pill mt-5"
href="https://github.com/faatehsultan/bi-app/releases/download/1.0/com.faateh.biapp.apk"
>
Get Mobile App
<img src="assets/img/android.png" alt="android" width="70px" />
</a>
</div>
</div>
<br /><br />
<div class="container">
<p class="text-center text-white m-0 small">
Copyright © The BI App 2020<br />Developed by <a
onclick="toDevPage();"
style="color: rgb(142, 127, 234);"
><strong>Syed Faateh Sultan Kazmi</strong></a
><br />
To contrbute on this project, make pull request on
<a href="https://github.com/faatehsultan/bi-app">Github</a>
</p>
</div>
</footer>
<script src="assets/js/jquery.min.js"></script>
<script src="assets/bootstrap/js/bootstrap.min.js"></script>
<script src="assets/js/script.js"></script>
</body>
</html>