-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
45 lines (37 loc) · 1.36 KB
/
index.html
File metadata and controls
45 lines (37 loc) · 1.36 KB
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Login</title>
<link rel="icon" type="image/x-icon" href="logo.jpg">
<link rel="stylesheet" href="index.css">
<link href='https://unpkg.com/boxicons@2.1.4/css/boxicons.min.css' rel='stylesheet'>
</head>
<body>
<div class="wrapper">
<form action="indexHOME.html" method="post">
<h1>LOGIN</h1>
<div class="input-box">
<input type="text" placeholder="Nome de usuário"
required>
<i class='bx bxs-user'></i>
</div>
<div class="input-box">
<input type="Senha" placeholder="Senha"
required>
<i class='bx bxs-lock-alt' ></i>
</div>
<div class="remember-forgot">
<label><input type="checkbox">Lembre de mim </label>
<a href="#">Esqueceu sua senha?</a>
</div>
<button type="submit" class="btn">Login</button>
<div class="register-link">
<p>Não tem uma conta? <a href="#">Registro</a></p>
</div>
</form>
</div>
</body>
</html>