-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcaptcha.html
More file actions
73 lines (63 loc) · 2.68 KB
/
captcha.html
File metadata and controls
73 lines (63 loc) · 2.68 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
67
68
69
70
71
72
73
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Human Verification</title>
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700&family=Space+Mono:wght@400;700&display=swap" rel="stylesheet">
<link rel="stylesheet" href="templatemo-glass-admin-style.css">
<!--
TemplateMo 607 Glass Admin
https://templatemo.com/tm-607-glass-admin
-->
</head>
<body>
<!-- Animated Background -->
<div class="background"></div>
<div class="orb orb-1"></div>
<div class="orb orb-2"></div>
<div class="orb orb-3"></div>
<div class="login-page">
<!-- Theme Toggle -->
<button class="theme-toggle-float" id="theme-toggle" title="Toggle Light/Dark Mode">
<svg class="icon-sun" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2">
<circle cx="12" cy="12" r="4"/><path d="M12 2v2"/><path d="M12 20v2"/>
<path d="M4.93 4.93l1.41 1.41"/><path d="M17.66 17.66l1.41 1.41"/>
<path d="M2 12h2"/><path d="M20 12h2"/>
<path d="M6.34 17.66l-1.41 1.41"/><path d="M19.07 4.93l-1.41 1.41"/>
</svg>
<svg class="icon-moon" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" style="display: none;">
<path d="M21 12.79A9 9 0 1 1 11.21 3 7 7 0 0 0 21 12.79z"/>
</svg>
</button>
<div class="login-container" style="max-width: 800px;">
<div class="login-card">
<div class="login-header">
<!--<img src="assets/logo.svg" height=120>-->
<h1 class="login-title">Human Verification</h1>
<p class="login-subtitle">You need to confirm that you're not a robot.</p>
</div>
<!--<form data-validate data-redirect="#" id="signup-form">-->
<p>No CAPTCHA has been added.</p>
<!-- Add your CAPTCHA here after removing the previous line-->
<button class="btn btn-primary" onclick="alert('Please do the CAPTCHA and confirm you\'re not a robot.');">
Continue
<svg width="18" height="18" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2">
<line x1="5" y1="12" x2="19" y2="12"/>
<polyline points="12 5 19 12 12 19"/>
</svg>
</button>
<!--</form>-->
</div>
</div>
<!-- Footer -->
<footer class="site-footer">
<p>Copyright © 2026 EasyCoin. Designed by <a href="https://templatemo.com" target="_blank" rel="nofollow">TemplateMo</a></p>
</footer>
</div>
<script src="templatemo-glass-admin-script.js"></script>
<!-- TemplateMo 607 Glass Admin -->
</body>
</html>