-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathconta.html
62 lines (60 loc) · 3.03 KB
/
conta.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
<!DOCTYPE html>
<html lang="pt-br">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Materialize</title>
<link rel="icon" href="./fotos/favicon.ico">
<link rel="stylesheet" href="./styles/style.css">
</head>
<body>
<header class="header">
<nav class="nav-bar">
<a href="/">
<img class="nav-logo" src="./fotos/LogoSample_ByTailorBrands (1).jpg" width="60" height="60" />
</a>
<div class="nav-search">
<form class="">
<div class="input-group">
<input type="text" placeholder="Busque seu material..."/>
<button>
<svg xmlns="http://www.w3.org/2000/svg" height="1.5em" viewBox="0 0 512 512"><!--! Font Awesome Free 6.4.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license (Commercial License) Copyright 2023 Fonticons, Inc. --><path d="M416 208c0 45.9-14.9 88.3-40 122.7L502.6 457.4c12.5 12.5 12.5 32.8 0 45.3s-32.8 12.5-45.3 0L330.7 376c-34.4 25.2-76.8 40-122.7 40C93.1 416 0 322.9 0 208S93.1 0 208 0S416 93.1 416 208zM208 352a144 144 0 1 0 0-288 144 144 0 1 0 0 288z"/></svg>
</button>
</div>
</form>
</div>
<div class="nav-icons">
<a href="escolas.html"><img src="./fotos/escola.svg" width="32" height="32" title="escolas cadastrada"/></a>
<a href="conta.html"><img src="./fotos/person.svg" width="32" height="32" title="perfil"/> </a>
<a href="carrinho.html"><img src="./fotos/carinho.svg" width="32" height="32"/></a>
<a href="endereço.html">
<img src="./fotos/location.svg" width="32" height="32" />
</a>
<a href="convecer.html"><img src="./fotos/work.svg" width="32" height="32" title="trabalhe conosco"></a>
</div>
</nav>
</header>
<main class="container-conta">
<div class="border-conta">
<h2>Conta</h2>
<form action="" class="form-conta">
<label for="">Nome</label>
<input class="input-conta" type="text" >
<label for="">Email</label>
<input class="input-conta" type="text" >
<label for="">Senha atual</label>
<input class="input-conta" type="password" >
<label for="">Nova senha</label>
<input class="input-conta" type="password" >
<label for="">Confirmar senha</label>
<input class="input-conta" type="password" >
<div class="btns-conta">
<button class="btn-historico-conta">Histórico de compras</button>
<button class="btn-salvar-conta">Salvar alterações</button>
<button class="btn-excluir-conta">Excluir usuário</button>
</div>
</form>
</div>
</main>
</body>
</html>