-
Notifications
You must be signed in to change notification settings - Fork 0
/
complete3.html
92 lines (88 loc) · 2.42 KB
/
complete3.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
<!DOCTYPE html>
<html>
<head>
<title>Sistema de Banco de Dados</title>
<style>
body {
background-color: #111;
font-family: Arial, sans-serif;
color: #fff;
}
.container {
width: 300px;
margin: 0 auto;
margin-top: 100px;
padding: 20px;
background-color: #222;
border-radius: 5px;
box-shadow: 0 2px 5px rgba(0, 0, 0, 0.3);
text-align: center; /* Centralizar o conteúdo */
}
input[type="text"],
input[type="password"],
button {
width: 100%;
padding: 10px;
margin-bottom: 10px;
border: 1px solid #ccc;
border-radius: 4px;
box-sizing: border-box;
}
button {
background-color: #ffcc00;
color: #fff;
font-weight: bold;
}
a {
color: #ffcc00;
text-decoration: none;
}
.background-image {
position: fixed;
top: 0;
left: 0;
width: 100%;
height: 100%;
z-index: -1;
background-image: url('2.jpg');
background-size: cover;
background-repeat: no-repeat;
opacity: 0.8;
}
.hidden {
display: none;
}
</style>
<script>
function login() {
var username = document.getElementById('username').value;
var password = document.getElementById('password').value;
// Lógica de validação do nome de usuário e senha.
if (username === "admin" && password === "admin") {
// Redireciona para o formulário de envio de mensagens
window.open("banco7.html");
} else {
alert("Nome de usuário ou senha incorretos!");
}
}
function handleKeyPress(event) {
// Verifica se a tecla pressionada é o "Enter" (código 13)
if (event.keyCode === 13) {
login();
}
}
</script>
</head>
<body>
<div class="background-image"></div>
<div class="container">
<h3>Seja bem-vindo ao sistema de envios automático de mensagens, através do WhatsApp</h3>
<h3>Para continuar, faça login com os seguintes dados:</h3>
<h4>Usuário: admin</h4>
<h4>Senha: admin</h4>
<input type="text" id="username" placeholder="Nome de usuário" onkeydown="handleKeyPress(event)">
<input type="password" id="password" placeholder="Senha" onkeydown="handleKeyPress(event)">
<button onclick="login()">Login</button>
</div>
</body>
</html>