-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcadastro.html
72 lines (64 loc) · 3.51 KB
/
cadastro.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
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
<!DOCTYPE html>
<html lang="pt-br">
<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">
<link rel="stylesheet" href="assets/css/reset.css">
<link rel="stylesheet" href="assets/css/style.css">
<link rel="stylesheet" href="assets/css/login_cadastro.css">
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link rel="stylesheet" href="https://fonts.googleapis.com/css2?family=Open+Sans:wght@400;600;700&display=swap">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.0.0-beta3/css/all.min.css"
integrity="sha512-Fo3rlrZj/k7ujTnHg4CGR2D7kSs0v4LLanw2qksYuRlEzO+tcaEPQogQ0KaoGN26/zrn20ImR1DfuLWnOo7aBA=="
crossorigin="anonymous" referrerpolicy="no-referrer" />
<title>Cadastro</title>
</head>
<body>
<header class="cabecalho">
<section class="topo_cabecalho">
<a href="index.html"><img class="logo_cabecalho" src="assets/img/logo.png"></a>
<nav class="cabecalho_nav">
<div class="login_cadastro_secao">
<a class="login" href="login.html"><i class="fa-solid fa-user user_icone"></i> Login</a>
<p id="login_barra">|</p><a class="login" href="cadastro.html">Cadastro</a>
</div>
<a class="fac" href=""><i class="fa-solid fa-headset headset_icone"></i> Atendimento ao cliente</a>
</nav>
</section>
</header>
<main>
<section class="caixa_login_cadastro">
<h2 class="titulo_login_cadastro">FAZER CADASTRO</h2>
<div>
<form class="formulario_login_cadastro" action="login.html" method="post">
<input class="validar usuario_login_cadastro input_login_cadastro" type="text" name="usuario" placeholder="E-mail, CPF ou CNPJ">
<input inputsenha class="validar senha input_login_cadastro" type="password" name="senha" placeholder="Senha">
<input inputsenha class="validar repetir_senha input_login_cadastro" type="password" name="confirma_senha" placeholder="Confirmar Senha">
<i class="fa-sharp fa-solid fa-eye img_mostrar_senha"></i>
<button class="button_login_cadastro" type="submit">Cadastrar</button>
</form>
<div class="redes_sociais">
<p class="texto_login_cadastro">ACESSAR COM REDES SOCIAIS</p>
<a class="facebook_botao" href="https://www.facebook.com"><i class="fa-brands fa-facebook-f"></i>
Facebook</a>
<a class="google_botao" href="https://www.google.com"><i class="fa-brands fa-google"></i> Google</a>
</div>
</div>
</section>
<div class="cadastro_login_texto_botao">
<p class="texto_cadastre-se_login">Já possui uma conta na Fialho Shop?</p>
<a class="botao_cadastre-se_login" href="login.html">Login</a>
</div>
</main>
<footer class="rodape">
<img class="logo_rodape" src="assets/img/logo.png">
<div>
<p class="texto_rodape apresentacao_rodape">FIALHO SHOP ®É UMA MARCA REGISTRADA DE</p>
<p class="texto_rodape apresentacao_rodape">FIALHO LTDA | CNPJ: 00.000.000/0000-00</p>
</div>
</footer>
<script src="assets/js/cadastro.js"></script>
</body>
</html>