-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
70 lines (63 loc) · 2.92 KB
/
Copy pathindex.html
File metadata and controls
70 lines (63 loc) · 2.92 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
<!DOCTYPE html>
<html lang="pt-BR">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>RPG de Progresso de Estudos - Nível Up!</title>
<style>@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;600;700&display=swap');</style>
<link rel="stylesheet" href="style.css">
</head>
<body>
<div id="login-screen">
<div class="login-card">
<h2 class="login-title">✨ Nível Up! RPG de Estudos</h2>
<p class="login-subtitle">Entre na jornada e comece a conquistar XP!</p>
<input type="text" id="username-input" placeholder="Nome de Usuário (Ex: EstudanteMestre)">
<input type="password" id="password-input" placeholder="Senha Secreta">
<button id="login-button" class="primary-btn">Entrar na Jornada</button>
<p id="login-message" class="error-message"></p>
</div>
</div>
<div id="main-screen" class="hidden">
<header>
<h1 id="welcome-message">Bem-vindo(a), Aventureiro(a)!</h1>
<button id="logout-button" class="danger-btn">Sair</button>
</header>
<main>
<section id="rpg-status">
<h3>⭐ Seu Status de Herói</h3>
<div class="status-box">
<p>Nível: <span id="player-level">1</span></p>
<p>XP Atual: <span id="player-xp">0</span></p>
</div>
<div class="xp-bar-container">
<div id="xp-bar-fill"></div>
</div>
<p class="xp-progress-text">Progresso: <span id="xp-current-progress">0</span> / <span id="xp-needed">100</span> XP</p>
</section>
<div class="dashboard-grid">
<section id="task-management" class="grid-item">
<h3>📜 Missões de Estudo (Ativas)</h3>
<div class="add-task">
<input type="text" id="new-task-input" placeholder="Nova Missão (Ex: Revisar Algoritmos)">
<select id="task-xp-value">
<option value="20">Jornada Curta (+20 XP)</option>
<option value="50">Desafio Médio (+50 XP)</option>
<option value="100">Batalha Épica (+100 XP)</option>
</select>
<button id="add-task-button" class="primary-btn">Adicionar Missão</button>
</div>
<ul id="task-list">
</ul>
</section>
<section id="mission-history" class="grid-item">
<h3>✅ Histórico de Conquistas</h3>
<ul id="history-list">
</ul>
</section>
</div>
</main>
</div>
<script src="script.js"></script>
</body>
</html>