-
Notifications
You must be signed in to change notification settings - Fork 1
/
alunos-admin.html
146 lines (137 loc) · 6.12 KB
/
alunos-admin.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
137
138
139
140
141
142
143
144
145
146
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<script src="https://kit.fontawesome.com/64d58efce2.js" crossorigin="anonymous"></script>
<link rel="stylesheet" href="./public/css/menu.css">
<link rel="stylesheet" href="./public/css/global.css">
<link rel="stylesheet" href="./public/css/admin.css">
<link href="https://fonts.googleapis.com/css2?family=Roboto:wght@400;900&family=Sen:wght@700&display=swap" rel="stylesheet">
<title>Alunos</title>
</head>
<body>
<header>
<div class="container">
<input type="checkbox" name="" id="check">
<div class="logo-container">
<img src="./public/assets/logo-fatec.png" alt="logo fatec">
</div>
<div class="nav-btn">
<div class="nav-links">
<ul>
<li class="nav-link" style="--i: 1.35s">
<a href="#">ALUNOS</a>
</li>
<li class="nav-link" style="--i: 1.35s">
<a href="#" id="exit">SAIR</a>
</li>
</ul>
</div>
</div>
<div class="icon-menu-container">
<div class="icon-menu">
<div></div>
</div>
</div>
</div>
</header>
<main>
<section>
<div class="container-geral-center">
<!-- NOTIFICAÇÃO PENDENTES - INICIO -->
<div class="notificacao">
<p>9 Solicitações pendentes de Cadastro</p>
</div>
<!-- NOTIFICAÇÃO PENDENTES - FIM -->
<div class="title">
<div class="rect"></div> Alunos
</div>
</div>
<div class="center">
<!-- Formulário de Pesquisa - INICIO -->
<form action="" class="border center formulario-de-pesquisa">
<div class="campo-input">
<label for="pesquisar">Aluno</label>
<input type="text" id="pesquisar" class="input" placeholder="Nome do Aluno">
</div>
<div class="campo-input">
<label for="pesquisar">Nome da Mãe</label>
<input type="text" id="pesquisar" class="input" placeholder="Nome da Mãe">
</div>
<div class="campo-input">
<label for="situacao">Situação</label>
<select class="input border" aria-label="Default select example" id="situacao" name="curso">
<option selected>Selecione uma situação</option>
<option value="Pendente">Pendente</option>
<option value="Cadastrado">Cadastrado</option>
</select>
</div>
<div class="center">
<button type="submit" class="button-search">Procurar</button>
</div>
</form>
<!-- Formulário de Pesquisa - FIM -->
</div>
<!-- TABELA DE ALUNO - INICIO -->
<div class="center">
<div class="tabela-alunos">
<table>
<tr>
<th>Nome do Aluno</th>
<th>Nome da Mãe</th>
<th>CPF</th>
<th>Curso</th>
<th>Semestre</th>
<th>Situação</th>
<th></th>
</tr>
<!-- TEMPLATE USUÁRIOS - INICIO -->
<tr>
<td>Rodrigo Álvarez Cabral</td>
<td>Maria Álvarez Cabral</td>
<td>00000000000</td>
<td>Gestão da T.I</td>
<td>5° Semestre</td>
<td class="pendente">Pendente</td>
<td class="botoes-vagas">
<button class="button-vagas">Excluir</button>
<button class="button-vagas pendente">Aceitar</button>
</td>
</tr>
<!-- TEMPLATE USUÁRIOS - FIM -->
<!-- ÁREA REMOVÍVEL - INICIO -->
<tr>
<td>Marcelo Santos da silva</td>
<td>Maria Álvarez Cabral</td>
<td>00000000000</td>
<td>Secretariado</td>
<td>5° Semestre</td>
<td>Pendente</td>
<td class="botoes-vagas">
<button class="button-vagas">Editar</button>
<button class="button-vagas">Excluir</button>
</td>
</tr>
<tr>
<td>Pedro henrique souza de melo</td>
<td>Maria Álvarez Cabral</td>
<td>00000000000</td>
<td>Gestão Comercial</td>
<td>5° Semestre</td>
<td>Pendente</td>
<td class="botoes-vagas">
<button class="button-vagas">Editar</button>
<button class="button-vagas">Excluir</button>
</td>
</tr>
<!-- ÁREA REMOVÍVEL - FIM -->
</table>
</div>
</div>
<!-- TABELA DE ALUNO - FIM -->
</section>
</main>
</body>
</html>