-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
30 lines (30 loc) · 1.15 KB
/
Copy pathindex.html
File metadata and controls
30 lines (30 loc) · 1.15 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<title>System Captcha</title>
<meta name="author" content="Nélio aka TheMadêras">
<meta name="description" content="CR7 IS THE BEST">
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<link rel="stylesheet" href="cenas/style.css" />
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.0.0-beta2/css/all.min.css"/>
</head>
<body>
<div class="wrapper">
<header> 🦾 Captcha 🦿</header>
<div class="captcha-area">
<div class="captcha-img">
<img src="https://cdn.pixabay.com/photo/2016/09/05/15/07/concrete-1646788_960_720.jpg"alt=""/>
<span class="captcha"></span>
</div>
<button class="reload-btn"><i class="fa fa-redo"></i></button>
</div>
<form action="#" class="input-area">
<input type="text" placeholder="Preencha o Captcha.." maxlength="6" required />
<button class="check-btn">✅</button>
</form>
<div class="status-txt"></div>
</div>
</body>
<script src="cenas/script.js"></script>
</html>