-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy patheditarPerfil.html
88 lines (68 loc) · 2.88 KB
/
editarPerfil.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
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
<!DOCTYPE html>
<html lang="pt-br">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="icon" href="assets/img/logo2.png">
<link rel="stylesheet" href="assets/css/reset.css">
<link rel="stylesheet" href="assets/css/editarPerfil.css">
<link rel="stylesheet" href="assets/css/style.css">
<link rel="stylesheet" href="assets/font-awesome-4.7.0/css/font-awesome.min.css">
<title>MyClass</title>
</head>
<body>
<main class="container">
<div id="gradiente">
<div id="hamburger">
<i class="fa fa-bars" aria-hidden="true"></i>
</div>
<section class="menu">
<div id="closeIcon">
<i class="fa fa-times" aria-hidden="true"></i>
</div>
<div class="sideBar">
<ul>
<li id="logoMenu">
<div class="sideBarLogo">
<img src="assets/img/logo2.png" alt="logo">
</div>
</li>
<li>
👤 Perfil</li>
<li>
🏠 Home</li>
<li>
💬 Salas</li>
<!-- <li>
<i class="fa fa-users" aria-hidden="true"></i> Grupos</li> -->
</ul>
</div>
</section>
<section id="editar" class="sectionForm editarPerfil">
<div class="container">
<h1>Editar</h1>
<hr>
<form class="form" id="formCadastro">
<label for="password" class="labels">
<!-- <i class="fa fa-user" aria-hidden="true"></i> -->
Nome
<input type="text" name="nome" class="btn-pink">
</label>
<label for="password" class="labels"> Email
<input type="email" name="email" class="btn-pink">
</label>
<label for="password" class="labels">Password
<input type="password" name="password" class="btn-pink">
</label>
<button type="button" id="cadastrar" class="btn btn-large">
<!-- <i class="fa fa-circle-o-notch fa-spin fa-3x fa-fw"></i> -->
<span id="btn-cadastrar">Editar</span>
</button>
</form>
</section>
</div>
</main>
<script src="assets/js/jquery.js"></script>
<script src="assets/js/menu.js"></script>
</body>
</html>