-
Notifications
You must be signed in to change notification settings - Fork 0
/
login.html
34 lines (28 loc) · 1 KB
/
login.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
<!DOCTYPE html>
<html lang="pt-BR">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Banco SimulaBank - Login</title>
<link rel="stylesheet" href="assets/css/styles.css">
</head>
<body>
<div class="login-container">
<h1>Banco SimulaBank</h1>
<form id="loginForm">
<label for="username">Usuário:</label>
<input type="text" id="username" required>
<label for="password">Senha:</label>
<input type="password" id="password" required>
<button type="submit">Entrar</button>
</form>
<p id="error-message" class="error"></p>
<ul>
<li>Usuário: user1 | Senha: pass1 | Saldo: R$5000</li>
<li>Usuário: user2 | Senha: pass2 | Saldo: R$300</li>
<li>Usuário: user3 | Senha: pass3 | Saldo: -R$20000</li>
</ul>
</div>
<script src="assets/js/login.js"></script>
</body>
</html>