-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathperfilprofessor.html
More file actions
166 lines (123 loc) · 5.89 KB
/
Copy pathperfilprofessor.html
File metadata and controls
166 lines (123 loc) · 5.89 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
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
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
<!DOCTYPE html>
<html lang="pt-br">
<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>Perfil do Professor</title>
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/bootstrap-icons@1.9.1/font/bootstrap-icons.css">
<link rel="stylesheet" href="estilos/header_e_footer.css">
<link rel="shortcut icon" href="imagens/favicon.ico" type="image/x-icon">
<link rel="stylesheet" href="estilos/perfilprofessor.css">
</head>
<body>
<header>
<section id="logo">
<a target="_blank" href="https://profept.ifrn.edu.br/">
<img class="efeito_de_zoom" src="imagens/logo.png" alt="agenda de apresentações" >
</a>
</section>
<section id="icones">
<nav id="nav">
<button id="btn-mobile">
<span id="hamburguer"></span>
</button>
<ul id="menu">
<li>
<a href="index.html" class="efeito efeito_de_carregamento"> Página Inicial</a>
</li>
<li>
<a href="login.html" class="efeito efeito_de_carregamento" rel="next">Login</a>
</li>
<li>
<a href="agendamento.html" class="efeito efeito_de_carregamento" rel="next">Agendamento</a>
</li>
<li>
<a href="suporte.html" class="efeito efeito_de_carregamento" rel="next">Suporte</a>
</li>
<li>
<a href="sobre.html" class="efeito efeito_de_carregamento" rel="next">Sobre</a>
</li>
<li>
<a href="corpodocente.html" class="efeito efeito_de_carregamento" rel="next">Corpo Docente</a>
</li>
<li>
<a href="#" class="efeito efeito_de_carregamento">
<input type="checkbox" name="mudar_tema" id="mudar_tema" >
<label for="mudar_tema" >
<i class="bi bi-sun "></i>
<i class="bi bi-moon"></i>
</label>
</a>
</li>
</ul>
</nav>
</section>
</header>
<main id="profile">
<h1>Perfil do professor</h1>
<img src="imagens/profile.png" alt="profile">
<div class="info">
<div class="textfield">
<p>Nome do docente:</p>
<div class="vazia">
</div> <hr>
</div>
<div class="textfield">
<p>Matrícula:</p>
<div class="vazia">
</div>
<hr>
</div>
</div>
<div class="textfield">
<p>Período:</p>
<div class="vazia">
</div>
<hr>
</div>
<div class="textfield">
<p>E-mail acadêmico:</p>
<div class="vazia">
</div>
<hr>
</div>
<div class="textfield">
<p>E-mail pessoal:</p>
<div class="vazia">
</div>
<hr>
</div>
<div class="textfield">
<p>CPF:</p>
<div class="vazia">
</div>
<hr>
</div>
<div class="textfield">
<p>Agendamentos pendentes:</p>
<div class="vazia"> </div>
<hr>
</div>
<div class="textfield">
<p>Agendamentos analisados:</p>
<div class="vazia"> </div>
<hr>
</div>
<div class="textfield">
<p>Agendamentos cancelados:</p>
<div class="vazia"> </div>
</div>
</div>
</main>
<div class="copyright">
<footer id="copyright">
<p>Instituto Federal de Educação, Ciência e Tecnologia do Rio Grande do Norte | Campus Mossoró <br>Rua Raimundo Firmino de Oliveira, 400 - Conj. Ulrick Graff, Mossoró - RN, CEP:59.628-330 CNPJ: 10.877.412/0004-00
<br>E-mail: cocsev.mo@ifrn.edu.br
Telefone: (84) 3422-2652/2660</p>
<p>Copyright © 2022</p>
</footer>
</div>
</body>
</html>
<script src="Javascript/script.js"></script>