-
Notifications
You must be signed in to change notification settings - Fork 3
/
index.html
32 lines (32 loc) · 1.11 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
<!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>OTP Verification Form - Ocoxe</title>
<link rel="stylesheet" href="style.css" />
<!-- Boxicons CSS -->
<!-- Standard favicon -->
<link rel="icon" href="https://raw.githubusercontent.com/Redwiat/redwiat.github.io/main/favicon-redwiat.png" type="image/x-icon">
<link href="https://unpkg.com/[email protected]/css/boxicons.min.css" rel="stylesheet" />
<script src="script.js" defer></script>
</head>
<body>
<div class="container">
<header>
<i class="bx bxs-check-shield"></i>
</header>
<h4>Enter OTP Code</h4>
<form action="#">
<div class="input-field">
<input type="number" />
<input type="number" disabled />
<input type="number" disabled />
<input type="number" disabled />
</div>
<button>Verify OTP</button>
</form>
</div>
</body>
</html>