-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathindex.html
More file actions
34 lines (29 loc) · 1016 Bytes
/
Copy pathindex.html
File metadata and controls
34 lines (29 loc) · 1016 Bytes
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">
<title>ARV-DESK</title>
<link rel="stylesheet" type="text/css" href="css/estilo.css">
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/bootstrap-icons@1.11.3/font/bootstrap-icons.min.css">
</head>
<body>
<div class="flex-column">
<div class="left">
<img src="imagens/img-index.png" class="">
<div class="text-container">
<h1>Bem vindo(a) !</h1>
<p>Informe o login e senha para acessar o sistema.</p>
</div>
</div>
<div class="loginbox">
<h1>ARV-DESK</h1>
<i class="bi bi-person-fill-gear"></i>
<form method="post" action="autenticacao.php">
<input type="text" name="login" id="login" placeholder="Digite seu login" required>
<input type="password" name="senha" id="senha" placeholder="Digite sua senha" required>
<input type="submit" name="" value="Logar">
<br><br><center><p><u><a href="esqueci.html">Esqueci a senha</a></u></p></center>
</form>
</div>
</body>
</html>