-
Notifications
You must be signed in to change notification settings - Fork 2
/
atualizar-dados-comprojeto.html
129 lines (108 loc) · 6.26 KB
/
atualizar-dados-comprojeto.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
<!DOCTYPE html>
<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">
<link href="css/atualizar-dados.css" rel="stylesheet"/>
<link rel="stylesheet" href="css/common.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=Source+Sans+Pro:ital,wght@0,400;0,600;0,700;1,400;1,600;1,700&display=swap" rel="stylesheet">
<title>Atualizar dados | Projeto Web 0</title>
</head>
<body>
<header>
<div class="center">
<div class="logo"> <img src="imagens/rural_logo.png" height="85"> </div>
<div class="menu">
<div class="perfil">
<a href="#" class="selecionado">PERFIL</a>
<ul>
<li><a class="navitem" href="#">Atualizar dados</a></li>
</ul>
</div>
<div class="perfil">
<a href="#" class="selecionado">SEU PROJETO</a>
<ul>
<li><a class="navitem" href="aluno-perfil-comprojeto.html">pagina inicial</a></li>
<li ><a class="navitem" href="enviar-relatorio.html">Enviar relatório</a></li>
<li ><a class="navitem" href="encerrar-vinculo.html">Solicitar encerramento de vínculo</a></li>
<li ><a class="navitem" href="historico-de-horas.html">Ver historico</a></li>
<li ><a class="navitem" href="incluir-cert.html">Incluir certificado de participação</a></li>
<li ><a class="navitem" href="contrato.html">Renovar contrato</a></li>
<li><a class="navitem" href="buscar-projetos-comprojeto.html">buscar projetos</a></li>
</ul>
</div>
<div class="perfil">
<a href="#" class="selecionado">
<svg width="20" height="20" viewBox="0 0 26 27" fill="none" xmlns="http://www.w3.org/2000/svg">
<path d="M21.775 21.0938H4.22501C3.57501 21.0938 3.00626 20.7562 2.68126 20.1656C2.35626 19.575 2.43751 18.9 2.76251 18.3094L3.65626 16.875C5.11876 14.5969 5.85001 11.9813 5.85001 9.28125C5.85001 6.15937 7.80001 3.29063 10.6438 2.27813C11.1313 1.35 12.025 0.84375 13 0.84375C13.975 0.84375 14.8688 1.35 15.3563 2.27813C18.2 3.29063 20.15 6.15937 20.15 9.28125C20.15 11.9813 20.8813 14.5969 22.3438 16.875L23.2375 18.3094C23.5625 18.9 23.6438 19.575 23.3188 20.1656C23.075 20.7562 22.425 21.0938 21.775 21.0938Z" fill="#1F1F1F"/>
<path d="M9.0188 22.7812C9.42505 24.7219 11.05 26.1562 13 26.1562C14.95 26.1562 16.575 24.7219 16.9813 22.7812H9.0188Z" fill="#1F1F1F"/>
</svg>
</a>
<ul>
<li ><a class="navitem" href="resposta-relatorio-negado.html">relatório:atualização</a></li>
</ul>
</div>
</div>
</div>
</header>
<div class="title">
<h1>Altere seus dados de usuario </h1>
</div>
<section class="form">
<div class="form-area">
<form>
<div class="linha-1">
<label for="nome">Nome Completo</label>
<input type="text" name="nome" id="nome">
</div>
<div class="linha-2">
<label for="cpf">CPF</label>
<input class="primeiro" type="text" name="cpf" id="cpf" maxlength="11">
<label class="torto" for="rg">RG</label>
<input type="text" name="rg" id="rg" maxlength="10">
<label class="torto" for="matricula">Matrícula</label>
<input class="ultimo" type="text" name="matricula" id="matricula" maxlength="11">
</div>
<div class="colunas">
<div class="coluna-1">
<div class="linha-3">
<label for="email">E-mail</label>
<input type="email" name="email" id="email" maxlength="19">
</div>
<div class="linha-4">
<label for="campus">Campus</label>
<label for="curso">Curso</label>
<select name="campus" id="campus">
<option value="seropedica">SEROPÉDICA</option>
<option value="nova-iguacu">NOVA IGUAÇU</option>
<option value="tres-rios">TRÊS RIOS</option>
</select>
<select name="curso" id="curso">
<option value="45">ADMINISTRAÇÃO - 45</option>
<option value="21">ENGENHARIA DE ALIMENTOS - 21</option>
<option value="38">PSICOLOGIA - 38</option>
<option value="39">SISTEMAS DE INFORMAÇÃO - 39</option>
</select>
</div>
</div>
<div class="coluna-2">
<div class="linha-3">
<label for="foto">Adicione uma foto sua</label>
<input multiple type="file" name="foto" id="foto">
</div>
</div>
</div>
</form>
</div>
<a class="botao-verde botao" href="aluno-perfil-comprojeto.html">SALVAR ALTERAÇÕES</a>
</section>
<section class="footer">
<footer>
<p id="title">Projeto de Web 0 - UFRRJ</p>
<p id="credits">Sarah, Bruna, Matheus e Paulo Gabriel</p>
</footer>
</section>
</body>
</html>