-
Notifications
You must be signed in to change notification settings - Fork 14
/
index.html
95 lines (90 loc) · 2.6 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
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
<!DOCTYPE html>
<html>
<head>
<title>Aviator Predictor</title>
<style>
body {
background-color: #0F1626;
color: #FFFFFF;
font-family: "Roboto", sans-serif;
font-size: 20px;
text-align: center;
padding-top: 100px;
}
h1 {
font-size: 60px;
margin-bottom: 50px;
letter-spacing: 2px;
}
input[type="text"], input[type="password"] {
padding: 10px;
margin-bottom: 20px;
border-radius: 30px;
border: none;
width: 300px;
font-size: 18px;
background-color: #3A4257;
color: #FFFFFF;
font-family: "Roboto", sans-serif;
font-weight: bold;
letter-spacing: 1px;
}
input[type="submit"] {
background-color: #FFD500;
color: #0F1626;
padding: 12px 30px;
border-radius: 30px;
border: none;
font-size: 18px;
cursor: pointer;
transition: background-color 0.3s ease;
font-weight: bold;
letter-spacing: 1px;
margin-top: 30px;
box-shadow: 0px 10px 20px rgba(0, 0, 0, 0.2);
}
input[type="submit"]:hover {
background-color: #F7B300;
}
</style>
</head>
<body>
<h1>Aviator Predictor</h1>
<form>
<label for="username">Usuario:</label><br>
<input type="text" id="username" name="username"><br>
<label for="password">Password:</label><br>
<input type="password" id="password" name="password"><br>
<input type="submit" value="Iniciar seccion">
</form>
</body>
</html>
<script>
var users = [
{username: "aviatoradmin1", password: "123"},
{username: "jamis", password: "jamis9"},
{username: "cristofer", password: "cristofer1"},
{username: "nemy", password: "nemy9"},
{username: "jerson", password: "jerson29"},
{username: "aviatorpredictor", password: "aviator21"},
{username: "predictoraviator", password: "predictor9"},
{username: "signalbot", password: "signal772"},
{username: "aviatorsignal", password: "bot9012"},
{username: "botpredictor", password: "bot9988"},
{username: "aviatorbot", password: "aviator199"}
];
document.querySelector("form").addEventListener("submit", function(event) {
event.preventDefault();
var username = document.getElementById("username").value;
var password = document.getElementById("password").value;
for (var i = 0; i < users.length; i++) {
if (username === users[i].username && password === users[i].password) {
window.location.href = "dashboard.html";
return;
}
}
alert("Oops, algo salió mal. Por favor, revisa tu nombre de usuario y contraseña y vuelve a intentarlo. Si sigues teniendo problemas, ¡llama a nuestro equipo de soporte para obtener ayuda! ☎️🛩️✈️");
});
</script>
</body>
</html