-
Notifications
You must be signed in to change notification settings - Fork 0
/
perfil.html
73 lines (63 loc) · 2 KB
/
perfil.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
73
<!DOCTYPE html>
<html lang="pt-br">
<head>
<meta charset="UTF-8">
<link rel="icon" href="assets/img/logored.svg">
<link rel="stylesheet" href="assets/css/reset.css">
<link rel="stylesheet" href="assets/css/style.css">
<link rel="stylesheet" href="assets/css/perfil.css">
<link rel="stylesheet" href="assets/font-awesome-4.7.0/css/font-awesome.min.css">
<title>MyClass</title>
</head>
<body>
<nav>
<ul>
<li class="logo">
<a href="index.html">
<img src="assets/img/logored.svg" alt="logo">
</a>
</li>
<li>
<a href="sala.html">Salas </a>
</li>
<li>
<a href="perfil.html">Perfil</a>
</li>
<li>
<a href="criarsala.html">Criar Sala</a>
</li>
</ul>
<a href="login.html">
<button id="btn-logout">
<i class="fa fa-sign-out" aria-hidden="true"></i>
logout</button>
</a>
</nav>
<section id="perfil">
<h1>Perfil</h1>
<div class="form">
<form action="" class="estiloForm">
<div class="label-input-form">
<label for="">Nome</label>
<input type="text">
</div>
<div class="label-input-form">
<label for="">Email</label>
<input type="email">
</div>
<div class="label-input-form">
<label for="">Senha</label>
<input type="password">
</div>
<div class="box-btn-form">
<button class="btn-Form-in">Salvar</button>
</div>
</form>
</div>
</section>
<section class="background-Animation">
<div class="wave"></div>
<div class="wave"></div>
</section>
</body>
<script src="assets/js/jquery.js"></script>