-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathlogged.html
50 lines (47 loc) · 2.13 KB
/
logged.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
<!DOCTYPE html>
<html lang="en">
<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="styles/reset.css">
<link rel="stylesheet" href="styles/style.css">
<link rel="stylesheet" href="styles/logged.css">
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=Roboto:wght@300;500&display=swap" rel="stylesheet">
<link rel="stylesheet"
href="https://fonts.googleapis.com/css2?family=Material+Symbols+Outlined:opsz,wght,FILL,GRAD@20..48,100..700,0..1,-50..200" />
<title>7 Days of code | Devdartagnan</title>
</head>
<body>
<main class="container">
<section class="section_log">
<h1>Olá,</h1>
<div class="log ">
<h3>Último log:</h3>
<div class="info-box">
<p id="nomeItem"></p>
<i id="iconEditNome" class="material-symbols-outlined log_span">edit_note</i>
</div>
<div class="info-box">
<p id="emailItem"></p>
<i id="iconEditEmail" class="material-symbols-outlined log_span">edit_note</i>
</div>
<div class="redo-password">
<button id="redoPasswordBtn">redefinir senha</button>
<form class="redo-password__inputs form display-none">
<input required id="oldPass" type="text" placeholder="senha antiga" value="">
<input required id="newPass" type="text" placeholder="nova senha" value="">
<button>Confirmar</button>
</form>
</div>
</div>
<button id="deslogar" class="deslogar"> Deslogar </button>
</section>
<section class="imagem">
</section>
<script src="js/logged.js"></script>
</main>
</body>
</html>