-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathverification.html
More file actions
37 lines (35 loc) · 1.21 KB
/
Copy pathverification.html
File metadata and controls
37 lines (35 loc) · 1.21 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Verify Authentication Code</title>
<link rel="stylesheet" href="verification.css" />
</head>
<body>
<div class="verification">
<h4 class="close"><a href="index.html">X</a></h4>
<h1 class="email-header">Email Verification</h1>
<p id="authentic">
Enter the authentication code provided by the authentication app to
<span id="email-span"></span>
</p>
<p class="code"></p>
<form id="verification-form">
<div class="input">
<input type="text" maxlength="1" class="code-input" autofocus/>
<input type="text" maxlength="1" class="code-input" />
<input type="text" maxlength="1" class="code-input" />
<input type="text" maxlength="1" class="code-input" />
</div>
<div class="button">
<button type="submit" id="submit">Verify</button>
<button type="reset">Clear</button>
</div>
</form>
<p class="greating">Congratulation!</p>
<p id="result"></p>
</div>
<script src="verify.js"></script>
</body>
</html>