-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
34 lines (28 loc) · 1.1 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
<!DOCTYPE html>
<html lang="pt-br">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>GEMDC | Login</title>
<link rel="stylesheet" href="./css/style.css">
<link rel="stylesheet" href="./css/login.css">
<link href='https://unpkg.com/[email protected]/css/boxicons.min.css' rel='stylesheet'>
<!-- <link rel="icon" href="./img/favicon.png" type="image/x-icon" /> -->
</head>
<body>
<div class="login">
<h2>Gestão de Estoque | MDC</h2>
<h3>Entrar</h3>
<!-- paragrafo abaixo é para edição -->
<p class="message-login"></p>
<span><i class='bx bx-user'></i> Usuário:</span>
<input id="user" type="text" placeholder="digite seu usuário">
<span><i class='bx bx-lock-alt' ></i> Senha:</span>
<input id="password" type="password" placeholder="******">
<i class='bx bx-low-vision' id="vision-passwd" data-showpassword="false"></i>
<p class="forgot-pwd">Esqueci minha senha: <a href="./pages/forgot-passwd/forgot-pwd.html">recuperar</a></p>
<button id="btnLogin">Entrar</button>
</div>
<script src="./js/configs.js"></script>
</body>
</html>