-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcadastro.html
More file actions
105 lines (85 loc) · 4.51 KB
/
Copy pathcadastro.html
File metadata and controls
105 lines (85 loc) · 4.51 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
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
<!DOCTYPE html>
<html lang="pt-BR">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>SaúdeControl — Criar Conta</title>
<!-- Tailwind CSS -->
<script src="https://cdn.tailwindcss.com"></script>
<!-- GSAP 3 -->
<script src="https://cdnjs.cloudflare.com/ajax/libs/gsap/3.12.5/gsap.min.js"></script>
<!-- Lucide Icons -->
<script src="https://unpkg.com/lucide@latest"></script>
<!-- Custom Styles -->
<link rel="stylesheet" href="css/style.css" />
<style>
body { display: block; }
</style>
</head>
<body class="min-h-screen relative flex items-center justify-center selection:bg-sky-600 selection:text-white">
<div class="bg-ambient"></div>
<!-- Theme Switcher Top Right -->
<div class="absolute top-5 right-5 z-50">
<div class="theme-menu-container" id="themeContainer">
<button class="btn-icon" onclick="alternarMenuTema()" title="Escolher Tema Visual">
<i data-lucide="sun" id="themeIconCurrent" class="w-5 h-5"></i>
</button>
<div class="theme-dropdown" id="themeDropdownMenu">
<div style="font-size:11px;font-weight:700;text-transform:uppercase;letter-spacing:0.06em;color:var(--text-light);padding:6px 10px 4px;">Tema da Interface</div>
<button class="theme-option" data-theme-val="light" onclick="aplicarTema('light'); alternarMenuTema();">
<span><span class="theme-badge-dot" style="background:#0284c7"></span>☀️ Claro (Apple)</span>
</button>
<button class="theme-option" data-theme-val="dark" onclick="aplicarTema('dark'); alternarMenuTema();">
<span><span class="theme-badge-dot" style="background:#38bdf8"></span>🌙 Escuro (Linear)</span>
</button>
<button class="theme-option" data-theme-val="midnight" onclick="aplicarTema('midnight'); alternarMenuTema();">
<span><span class="theme-badge-dot" style="background:#a855f7"></span>🌌 Meia-Noite (OLED)</span>
</button>
<button class="theme-option" data-theme-val="wellness" onclick="aplicarTema('wellness'); alternarMenuTema();">
<span><span class="theme-badge-dot" style="background:#10b981"></span>🌿 Menta (Wellness)</span>
</button>
</div>
</div>
</div>
<div class="pagina-login w-full">
<div class="caixa-login mx-auto">
<div class="login-logo">
<div class="icone">
<i data-lucide="user-plus" class="w-7 h-7 text-white"></i>
</div>
<h1>Criar Nova Conta</h1>
<p>Junte-se ao SaúdeControl gratuitamente</p>
</div>
<div class="mensagem-erro" id="msgErro"></div>
<form id="formCadastro" class="space-y-3">
<div class="form-group">
<label class="form-label" for="nome">Nome Completo</label>
<input type="text" id="nome" class="form-control" placeholder="Seu nome e sobrenome" required />
</div>
<div class="form-group">
<label class="form-label" for="identificacao">E-mail, CPF ou Telefone</label>
<input type="text" id="identificacao" class="form-control" placeholder="Será seu login de acesso" required />
</div>
<div class="form-row">
<div class="form-group">
<label class="form-label" for="senha">Senha</label>
<input type="password" id="senha" class="form-control" placeholder="Mínimo 6 dígitos" required />
</div>
<div class="form-group">
<label class="form-label" for="confirmarSenha">Confirmar Senha</label>
<input type="password" id="confirmarSenha" class="form-control" placeholder="Repita a senha" required />
</div>
</div>
<button type="submit" class="btn btn-primary w-full justify-center py-2.5 text-sm font-bold">
Finalizar Cadastro
</button>
</form>
<div class="link-alternativo">
Já possui uma conta? <a href="login.html">Faça login</a>
</div>
</div>
</div>
<script src="js/app.js"></script>
<script src="js/auth.js"></script>
</body>
</html>