-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
50 lines (49 loc) · 1.98 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
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
<!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">
<!-- CSS File for Captcha -->
<link rel="stylesheet" href="css/main.css">
<title>Captcha -Page</title>
<style>
/* Showing that the integrated class can adopt styles as per the body or form style */
body{
background-image: linear-gradient(-45deg, #aa37ec, #16eeee);
background-repeat: no-repeat;
background-size: cover;
font-size: 19px;
font-family: Verdana, Geneva, Tahoma, sans-serif;
}
</style>
<script type="text/javascript">
(function(c,l,a,r,i,t,y){
c[a]=c[a]||function(){(c[a].q=c[a].q||[]).push(arguments)};
t=l.createElement(r);t.async=1;t.src="https://www.clarity.ms/tag/"+i;
y=l.getElementsByTagName(r)[0];y.parentNode.insertBefore(t,y);
})(window, document, "clarity", "script", "lo8edgkhua");
</script>
</head>
<body>
<!-- Example Form with use of Captcha -->
<!-- !Optional! div container with added class 'form-with-captcha' -->
<div class="form-with-captcha">
<!-- !!IMPORTANT!! form container with added class 'captcha-enabled-form'-->
<form class="captcha-enabled-form">
<div class="container-form">
<!-- Example inputs -->
<label for="name">Name</label>
<input type="text" name="name" required />
<label for="password">Password</label>
<input type="password" name="password" required />
</div>
<div class="captcha-container"></div>
<!-- !!IMPORTANT!! Submit button must be having class 'enable-for-captcha' -->
<button type="submit" class="submit-after-valid-captcha">Submit</button>
</form>
</div>
<!-- JS File for Captcha -->
<script src="js/main.js"></script>
</body>
</html>