-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
66 lines (61 loc) · 2.65 KB
/
index.html
File metadata and controls
66 lines (61 loc) · 2.65 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
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta name="description" content="点阵字防OCR验证码,有效防止OCR识别,提高验证码的安全性。">
<meta name="keywords" content="验证码, 图像文字验证码, 防OCR验证码, 安全性">
<meta name="author" content="">
<title>图像文字验证码</title>
<link rel="stylesheet" href="style.css">
</head>
<body>
<header>
<h3 class="title">图像文字验证码,由EndlessPixel Studio的system_mini成员开发</h3>
<hr>
</header>
<main>
<div class="form-container">
<from class="form">
<label>验证码(点击刷新):</label>
<div class="captcha-box">
<canvas id="captcha-canvas" width="160" height="70"></canvas>
<div class="input-container">
<input class="input" type="text" name="userCode" id="userCode" placeholder="输入4位验证码"
maxlength="4" required>
<label class="label">请输入验证码</label>
<div class="top-line"></div>
<div class="under-line"></div>
</div>
</div>
<label>验证码可能会加载失败,若失败请点击图片刷新或刷新页面重试。</label>
<button class="button" id="submit-btn">
<span class="button-content">验证 </span>
</button>
</from>
</div>
<div class="modal" id="tip-modal">
<div class="modal-content">
<div id="modal-text"></div>
<div id="modal-uid" class="modal-uid"></div>
<button class="button" id="modal-close">
<span class="button-content">确定 </span>
</button>
</div>
</div>
</main>
<footer class="copyright-footer" aria-label="版权信息">
<p class="copyright-text">
© 2024–2026 EndlessPixel Studio
<span class="copyright-author">BY system_mini</span>
| 项目地址:
<a href="https://github.com/EndlessPixel/captcha" target="_blank" rel="noopener noreferrer"
class="copyright-link" aria-label="前往GitHub查看captcha项目(新标签页)">
https://github.com/EndlessPixel/captcha
</a>
| 基于 <span class="license-tag">MIT协议</span> 开源
</p>
</footer>
<script src="script.js"></script>
</body>
</html>