-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmodal.html
More file actions
53 lines (47 loc) · 1.69 KB
/
modal.html
File metadata and controls
53 lines (47 loc) · 1.69 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
<!-- ==========================================================================
MODAL DE CONFIGURAÇÃO INICIAL
========================================================================== -->
<div id="modal-nome" class="modal" role="dialog" aria-modal="true" aria-labelledby="modal-nome-titulo">
<!-- Botão de fechar -->
<button class="modal-fechar" onclick="fecharModalNome()" aria-label="Fechar modal">
<svg viewBox="0 0 24 24" aria-hidden="true">
<path d="M19 6.41L17.59 5 12 10.59 6.41 5
5 6.41 10.59 12 5 17.59 6.41 19
12 13.41 17.59 19 19 17.59
13.41 12z"/>
</svg>
</button>
<!-- Conteúdo principal -->
<div class="modal-conteudo">
<h2 id="modal-nome-titulo">Bem-vindo ao Rememorium</h2>
<p class="modal-subtitulo">
Aqui seus fragmentos de saber ganham vida.
Revise, evoque e fortaleça sua memória em ciclos de lembrança.
</p>
<!-- Campo Nome Arcano -->
<label for="nomeArcanoInput">Como devemos chamá-lo(a), guardião do conhecimento?</label>
<input
type="text"
id="nomeArcanoInput"
placeholder="Seu nome arcano..."
maxlength="30"
/>
<!-- Campo Nome da Prova -->
<label for="provaInput">Qual prova você prestará?</label>
<input
type="text"
id="provaInput"
placeholder="Ex: Revalida 25.2"
maxlength="30"
/>
<!-- Campo Data da Prova -->
<label for="dataProvaInput">Data da prova:</label>
<input
type="text"
id="dataProvaInput"
placeholder="dd/mm/aaaa"
/>
<!-- Botão de ação -->
<button onclick="salvarNomeArcano()">Selar Configuração Inicial</button>
</div>
</div>