forked from labenuexercicios/projeto-intro-web-js
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathadm-financeiro.html
136 lines (120 loc) · 5.45 KB
/
adm-financeiro.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
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
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
<!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">
<title>Área ADM</title>
<script src="./script.js" defer></script>
<script src="https://unpkg.com/sweetalert/dist/sweetalert.min.js"></script>
<link rel="stylesheet" href="./adm-financeiro.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=Open+Sans:wght@400;500;700;800&family=Poppins:wght@400;500;700&display=swap" rel="stylesheet">
<link rel="stylesheet" href="https://fonts.googleapis.com/css2?family=Material+Symbols+Outlined:opsz,wght,FILL,[email protected],100..700,0..1,-50..200" />
</head>
<body>
<header>
<a href="./index.html">
<img src="./midias/logo.svg" alt="LabEscola logo" id="logo" />
</a>
<nav id="nav">
<span id="btn-burger" class="material-symbols-outlined" onclick="toggleMenu(event)">
menu
</span>
<ul id="menu">
<li class="links-header"><a href="./index.html">Home</a></li>
<li class="links-header"><a href="./cursos.html">Cursos</a></li>
<li class="links-header"><a href="./contato.html">Contato</a></li>
<li class="links-header"><a href="./adm-turmas.html">Área ADM</a></li>
</ul>
</nav>
</header>
<main>
<aside id="menu-adm">
<nav>
<ul id="aside-list">
<li class="aside-links"><a href="./adm-turmas.html">Turmas</a></li>
<li class="aside-links"><a href="./adm-matriculas.html">Matrículas</a></li>
<li class="aside-links" id="selected-aside"><a href="./adm-financeiro.html">Financeiro Alunos</a></li>
</ul>
</nav>
</aside>
<section id="section-container">
<article id="search">
<h1>Financeiro</h1>
<form action="#">
<label for="course">Curso</label>
<input type="text" name="curso" id="course">
<a href="#" onclick="buscarCurso(event)">Adicionar outro curso</a>
<label for="payment-plan">Número de parcelas</label>
<input type="text" name="numero-parcelas" id="payment-plan">
<button class="submit-button" type="submit" onclick="parcelarCurso(event)">Ver valor</button>
</form>
</article>
<article id="student-report">
<h1>Relatório Aluno</h1>
<form action="#">
<label for="name">Nome</label>
<input type="text" name="nome" id="name">
<button class="submit-button" type="submit" onclick="relatorioEstudante(event)">Buscar</button>
</form>
</article>
</section>
</main>
<footer>
<div class="logo-footer">
<a href="./index.html">
<img
src="./midias/logo-footer.svg"
alt="LabEscola logo"
id="logo-in-footer"/>
</a>
</div>
<div id="adress">
<h3 class="titles">Endereço</h3>
<a
id="map"
target="_blank"
href="https://www.google.com.br/maps/place/R.+Pais+Leme,+215+-+Pinheiros,+S%C3%A3o+Paulo+-+SP,+05424-150/@-23.5685757,-46.6991529,18z/data=!3m1!4b1!4m5!3m4!1s0x94ce57a7c7ace4c3:0x586759cab9b5c95a!8m2!3d-23.5685772!4d-46.6985022?hl=pt-BR">
<img src="./midias/mapa.svg" alt="map-adress" id="map-adress"/>
</a>
<p class="text-footer">R. Pais Leme, 215. CEP 05.424-150 - Pinheiros</p>
</div>
<div id="footer-menu">
<h3 class="titles">Links</h3>
<div id="list-links-footer">
<a class="text-footer" href="./index.html">Home</a>
<a href="./cursos.html" class="text-footer">Cursos</a>
<a href="#" class="text-footer">Blog</a>
<a href="./contato.html" class="text-footer">Fale Conosco</a>
<a href="#" class="text-footer">Termos e condições</a>
<a href="#" class="text-footer">Política de privacidade</a>
<a href="#" class="text-footer">FAQ</a>
</div>
</div>
<div id="redes-sociais">
<h3 class="titles">Redes sociais</h3>
<div class="icons">
<a target="_blank" class="links-redes" href="https://twitter.com/">
<img src="./midias/icones/icon-twitter.svg" alt="twitter"/>
</a>
<a target="_blank" class="links-redes" href="https://linkedin.com">
<img src="./midias/icones/icon-linkedin.svg" alt="linkedin"/>
</a>
<a target="_blank" class="links-redes" href="https://facebook.com">
<img src="./midias/icones/icon-fb.svg" alt="facebook"/>
</a>
<a target="_blank" class="links-redes" href="https://intagram.com">
<img src="./midias/icones/icon-ig.svg" alt="instagram"/>
</a>
</div>
</div>
<div id="adm-links">
<h3 class="titles">Área restrita</h3>
<div id="areas-internas">
<a href="./adm-turmas.html" class="text-footer">Área administrativa</a>
<a href="#" class="text-footer">Espaço do aluno</a>
</div>
</div>
</footer>
</body>
</html>