-
Notifications
You must be signed in to change notification settings - Fork 1
/
index.html
26 lines (26 loc) · 1.07 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
<!DOCTYPE html>
<!--suppress JSUnresolvedLibraryURL -->
<html lang="en">
<head>
<meta charset="UTF-8">
<title>EasyCaptchaJs</title>
<link href="https://cdn.jsdelivr.net/npm/bootstrap@5.3.0/dist/css/bootstrap.min.css" rel="stylesheet" integrity="sha384-9ndCyUaIbzAi2FUVXJi0CjmCapSmO7SnpJef0486qhLnuZ2cdeRhO02iuK6FUUVM" crossorigin="anonymous">
<meta name="ReCAPTCHA_API_KEY_CLIENT" content="6LcygV4nAAAAAASxl5WN7QPIPdGYqSgJKawB0Zl1">
</head>
<body>
<form>
<div class="container mt-3 col-6-md card p-5">
<h1>EasyCaptchaJs</h1>
<label class="label">Hello</label>
<div class="form-group">
<div class="captchaTarget" data-auto-easycaptcha data-okbtn-selector="#ok"></div>
</div>
<div class="form-group">
<button type="button" class="btn btn-primary" id="ok">OK</button>
</div>
</div>
</form>
<script src="https://code.jquery.com/jquery-3.7.0.min.js" integrity="sha256-2Pmvv0kuTBOenSvLm6bvfBSSHrUJ+3A7x6P5Ebd07/g=" crossorigin="anonymous"></script>
<script src="dist/easycaptcha.js"></script>
</body>
</html>