-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathtimer.html
More file actions
61 lines (59 loc) · 2.22 KB
/
Copy pathtimer.html
File metadata and controls
61 lines (59 loc) · 2.22 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Document</title>
<link rel="stylesheet" href="./Styles/timer.css">
</head>
<body>
<!-- navbar -->
<div id="nav">
<img src="https://www.cricbuzz.com/images/cb_logo.svg" alt="cricbuzz">
</div>
<!-- body -->
<div id="container">
<div>
<div id="top">
<!-- kid1 -->
<div class="k1">
<div><a class="fontsize" href="./home.html">Home ></a> </div>
<div><a id="acc" href="./index.html">Account</a></div>
</div>
<!-- kid2 -->
<div class="k2">
<img src="https://www.cricbuzz.com/images/cb_logo_plus_color.svg" alt="logo">
</div>
</div>
</div>
<!-- enterOtp -->
<div id="enterOtp" class="fontsize">
<h5 class="fontsize1">Enter the 6 digit OTP</h5>
<p class="fontsize">OTP sent to
<span>your mail</span>
</p>
</div>
<!-- otpbox -->
<form id="form">
<input type="text" maxlength="1" autofocus id="num1" onkeyup="movetoNext(this, 'num2')">
<input type="text" maxlength="1" autofocus id="num2" onkeyup="movetoNext(this, 'num3')">
<input type="text" maxlength="1" autofocus id="num3" onkeyup="movetoNext(this, 'num4')">
<input type="text" maxlength="1" autofocus id="num4" onkeyup="movetoNext(this, 'num5')">
<input type="text" maxlength="1" autofocus id="num5" onkeyup="movetoNext(this, 'num6')">
<input type="text" maxlength="1" autofocus id="num6" onkeyup="change()" >
<div class="button">
<input type="submit" value="SUBMIT" id="submit" class="fontsize">
</div>
</form>
<!-- button -->
<!-- timer -->
<p id="demo"></p>
<!-- helpbox -->
<div class="help">
<a href="">Need help?</a>
</div>
</div>
</body>
</html>
<script src="./Script/timer.js"></script>