-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
53 lines (52 loc) · 1.76 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
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
<!DOCTYPE html>
<html lang="pt-br">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Rocket NFTs - desafio by Guilherpe Pereira</title>
<link rel="stylesheet" href="assets/css/styles.css">
</head>
<body>
<section id="root">
<section id="login-container">
<nav>
<img src="assets/img/logo.svg" alt="Logo da Camp.in">
</nav>
<section class="form-container">
<form action="">
<section class="form-header">
<section class="title">
<img src="assets/img/log-in.svg" alt="Icone login">
<h3>Faça seu login</h3>
</section>
<p>Entre com suas informações de cadastros.</p>
</section>
<section class="container-input text">
<label for="email">E-mail</label>
<input type="text" placeholder="Digite seu e-mail" id="email">
<span class="icon email start"></span>
</section>
<section class="container-input text">
<label for="password">Senha</label>
<input type="text" placeholder="Digite sua senha" id="password" class="password">
<span class="icon start eye"></span>
<span class="icon end eye"></span>
</section>
<section class="container-input actions">
<label class="container lembrar">Lembre-me
<input type="checkbox" checked="checked">
<span class="checkmark"></span>
</label>
<a class="esqueci" href="#esqueci-minha-senha">Esqueci minha senha</a>
</section>
<section class="container-input buttons">
<button class="fill" type="submit">Entrar</button>
<p class="create-account">Não tem uma conta? <a href="#">Registre-se</a></p>
</section>
</form>
</section>
</section>
<section id="background-container"></section>
</section>
</body>
</html>