-
Notifications
You must be signed in to change notification settings - Fork 43
Expand file tree
/
Copy pathindex.html
More file actions
35 lines (27 loc) · 1.23 KB
/
index.html
File metadata and controls
35 lines (27 loc) · 1.23 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>CAPTCHA Validator</title>
<link rel="stylesheet" href="styles.css" />
</head>
<body>
<div class="center">
<h1 id="captchaHeading">Captcha Validator Using HTML, CSS and JavaScript</h1>
<form id="captchaForm" onsubmit="return false;">
<div id="captchaBackground" role="region" aria-labelledby="captchaHeading">
<canvas id="captcha" aria-label="Generated CAPTCHA image">captcha text</canvas>
<label for="textBox" style="color:white; margin-top: 10px;">Enter the CAPTCHA</label>
<input id="textBox" type="text" name="text" aria-label="Enter CAPTCHA" autocomplete="off" autofocus />
<div id="buttons">
<input id="submitButton" type="submit" value="Submit" aria-label="Submit CAPTCHA" />
<button id="refreshButton" type="button" aria-label="Refresh CAPTCHA">Refresh</button>
</div>
<span id="output" aria-live="polite"></span>
</div>
</form>
</div>
<script src="script.js"></script>
</body>
</html>