-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathcaptchaBox.html
More file actions
28 lines (27 loc) · 1.36 KB
/
captchaBox.html
File metadata and controls
28 lines (27 loc) · 1.36 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
<!DOCTYPE html>
<html lang="en-US">
<head>
<meta charset="utf-8" />
<title>codeCaptcha</title>
<meta name="description" content="A Captcha for devs where you debug code-snippets to verify you're human" />
<meta http-equiv="Cache-Control" content="no-cache, no-store, must-revalidate" />
<meta http-equiv="Pragma" content="no-cache" />
<meta http-equiv="Expires" content="0" />
<link rel="stylesheet" type="text/css" href="light_theme.css" id="sty">
</head>
<body class="body">
<h1 class="box-heading">Debug this code to verify you're a human dev!</h1>
<h2 class="box-heading" id="language-name"></h2>
<noscript><h3 class="box-heading">Please enable JavaScript to use this captcha!</h3></noscript>
<form method="GET" action="" class="box">
<textarea id="captchaCode" cols="50" rows="25" placeholder="Code goes here" spellcheck="false"></textarea>
<p id="errorMessg"></p>
<hr/>
<button type="button" class="submit" onclick="changeTheme()" id="chtheme">Dark theme</button>
<button type="button" class="submit" onclick="runTest()">Run code</button>
<button type="button" class="submit" onclick="fillEditor()">Get another code</button>
<button type="submit" id="submit" class="submit disabledSubmit" disabled>Submit</button>
</form>
<script src="CodeCaptcha.js"></script>
</body>
</html>