-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
29 lines (29 loc) · 923 Bytes
/
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="style.css">
<title>Tela de Login</title>
</head>
<body>
<div class="login-container">
<div>
<img src="./img/pluvitechLogo.png" alt="">
<h1>PluviTech</h1>
</div>
<form id="login-form">
<div class="input-container">
<label for="usuario">Usuário:</label>
<input type="text" id="usuario" name="usuario" required>
</div>
<div class="input-container">
<label for="senha">Senha:</label>
<input type="password" id="senha" name="senha" required>
</div>
<button type="submit">Entrar</button>
</form>
<script src="login.js"></script>
</div>
</body>
</html>