-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
56 lines (50 loc) · 2.01 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
51
52
53
54
55
56
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Captcha Integration</title>
<link href='https://unpkg.com/boxicons@2.1.4/css/boxicons.min.css' rel='stylesheet'>
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/5.15.2/css/all.min.css">
<link href='https://unpkg.com/boxicons@2.1.4/css/boxicons.min.css' rel='stylesheet'>
<link rel="stylesheet" href="https://stackpath.bootstrapcdn.com/font-awesome/4.7.0/css/font-awesome.min.css">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/5.15.2/css/all.min.css">
<link href='https://unpkg.com/boxicons@2.1.4/css/boxicons.min.css' rel='stylesheet'>
<link rel="stylesheet" href="style.css">
</head>
<script>
function reset(){
location.reload();
}
</script>
<body>
<div class="login-form">
<div class="form-title">
Captcha Verification
</div>
<div class="form-input">
<label for="username"><b>Username</b></label>
<input type="text" id="username" required>
</div>
<div class="form-input">
<label for="password"><b>Password</b></label>
<input type="password" id="password" required>
</div>
<div class="captcha">
<label for="captcha-input"><b>Captcha</b></label>
<div class="preview"></div>
<div class="captcha-form">
<input type="text" id="captcha-form" placeholder="Enter Captcha Here">
<button class="captcha-refresh">
<i class="fas fa-refresh"></i>
</button>
</div>
</div>
<div class="form-input">
<button id="login-btn" type="submit"><b>Login</b></button>
</div>
</div>
<script src="script.js"></script>
<script src="sweetalert.min.js"></script>
</body>
</html>