-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathConfiguracoes.html
More file actions
78 lines (73 loc) · 3.8 KB
/
Copy pathConfiguracoes.html
File metadata and controls
78 lines (73 loc) · 3.8 KB
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
<!DOCTYPE html>
<html lang="pt-BR">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Configurações</title>
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.6.0/css/all.min.css" integrity="sha512-Kc323vGBEqzTmouAECnVceyQqyqdsSiqLQISBL29aUW4U/M7pSPA/gEUZQqv1cwx4OnYxTxve5UMg5GT6L4JJg==" crossorigin="anonymous" referrerpolicy="no-referrer" />
<link rel="stylesheet" href="css/configuracoes.css">
<link rel="stylesheet" href="css/transicao.css">
<!-- <link rel="stylesheet" href="css/style.css"> -->
</head>
<body>
<!--Pluggin Vlibras-->
<div vw class="enabled">
<div vw-access-button class="active"></div>
<div vw-plugin-wrapper>
<div class="vw-plugin-top-wrapper"></div>
</div>
</div>
<div class="container">
<nav class="sidebar">
<h2>Configurações</h2>
<ul>
<li><a href="#" class="active" onclick="showContent('geral')"><i class="fa-solid fa-bars"></i><span>Geral</span></a></li>
<li><a href="#" onclick="showContent('privacidade')"><i class="fa-solid fa-user-lock"></i><span>Privacidade</a></span></li>
<li><a href="#" onclick="showContent('personalizacao')"><i class="fa-solid fa-palette"></i> <span>Personalização</span></a></li>
<li><a href="logado.html" ><i class="fa-solid fa-right-from-bracket"></i><span>Sair</span></a></li>
<!-- Para criar novas categorias basta realizar o mesmo procedimento a cima-->
</ul>
</nav>
<div class="main-content">
<div id="geral" class="content-section">
<div id="user-section">
<h2 class="title">Atualizar Dados</h2>
<form id="update-form">
<input type="hidden" id="user-id">
<label for="user-name">Nome:</label>
<input type="text" id="user-name" required>
<label for="user-phone">Telefone:</label>
<input type="text" id="user-phone" required>
<label for="user-email">Email:</label>
<input type="email" id="user-email" required>
<label for="user-password">Senha:</label>
<input type="password" id="user-password" required>
<button class="enviar" type="submit">Atualizar</button>
</form>
</div>
</div>
<div id="privacidade" class="content-section" style="display: none;">
<h3>Privacidade</h3>
<p>Conteúdo das configurações de privacidade.</p>
</div>
<div id="personalizacao" class="content-section" style="display: none;">
<h3>Personalização</h3>
<p style="margin-bottom: 50px;">Conteúdo das configurações de Personalização.</p>
<div class="theme">
<p>Alterar tema: </p><button class="tema" onclick="toggleTema()"><i id="fixar" class="fa-solid fa-lightbulb"></i></button>
</div>
</div>
</div>
</div>
<div id="loading" class="loader" style="display: none;"></div>
<script src="js/configuracoes.js"></script>
<script src="js/db.js"></script>
<script src="js/tema.js"></script>
<script src="js/logado.js"></script>
<script src="https://vlibras.gov.br/app/vlibras-plugin.js"></script>
<script src="js/transicao.js"></script>
<script>
new window.VLibras.Widget('https://vlibras.gov.br/app');
</script>
</body>
</html>