-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdados.php
140 lines (122 loc) · 4.67 KB
/
dados.php
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
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<title>Confirmação de Dados</title>
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet" type="text/css" media="screen" href="css/main.css" />
</head>
<style>
#formulario form > input {
background-color: rgb(59, 153, 67);
}
h3 {
background-color: rgb(153, 59, 59);
}
#formulario form #nome, #user, #question, #pretencao {
outline-color: rgb(153, 59, 59);
}
</style>
<body>
<header>
<h3>Confirmação de Dados</h3>
</header>
<section id="formulario">
<form action="#" method="POST">
<label id="lnome" for="nome">
<h3>Nome Completo</h3>
<input type="text" name="nome" id="nome" value="<?= $_POST['nome']?>">
</label>
<label id="luser" for="user">
<h3>Usuário</h3>
<input type="text" name="user" id="user" value="<?= $_POST['user']?>">
</label>
<label id="lquestion" for="question">
<h3>Perfil</h3>
<textarea name="question" id="question" placeholder="Descreva seu perfil profissional..."><?= $_POST['question']?></textarea>
</label>
<label id="lpretencao" for="pretencao">
<h3>Prentenção Salarial </h3>
<select name="pretencao" id="pretencao">
<option value="0" <?= $_POST['pretencao']=='0'?'selected':'';?>></option>
<option value="1" <?= $_POST['pretencao']=='1'?'selected':'';?>>1000-1500</option>
<option value="2" <?= $_POST['pretencao']=='2'?'selected':'';?>>1500-2000</option>
<option value="3" <?= $_POST['pretencao']=='3'?'selected':'';?>>2000-2500</option>
<option value="4" <?= $_POST['pretencao']=='4'?'selected':'';?>>2500-3000</option>
<option value="5" <?= $_POST['pretencao']=='5'?'selected':'';?>>3000+</option>
</select>
</label>
<label id="lsexo">
<h3>Sexo</h3>
<label for="n">
<input type="radio" name="sexo" id="n" value="n" <?= $_POST['sexo']=='n'?'checked':'';?>>
<h5>Não Informar</h5>
</label>
<label for="m">
<input type="radio" name="sexo" id="m" value="m" <?= $_POST['sexo']=='m'?'checked':'';?>>
<h5>Masculino</h5>
</label>
<label for="f">
<input type="radio" name="sexo" id="f" value="f" <?= $_POST['sexo']=='f'?'checked':'';?>>
<h5>Feminino</h5>
</label>
</label>
<label id="lescolaridade">
<h3>Escolaridade</h3>
<label for="fundamental">
<input type="radio" name="escolaridade" id="fundamental" value="fundamental" <?= $_POST['escolaridade']=='fundamental'?'checked':'';?>>
<h5>Fundamental</h5>
</label>
<label for="medio-incompleto">
<input type="radio" name="escolaridade" id="medio-incompleto" value="medio-incompleto" <?= $_POST['escolaridade']=='medio-incompleto'?'checked':'';?>>
<h5>Médio Incompleto</h5>
</label>
<label for="medio">
<input type="radio" name="escolaridade" id="medio" value="medio" <?= $_POST['escolaridade']=='medio'?'checked':'';?>>
<h5>Médio</h5>
</label>
<label for="superior-incompleto">
<input type="radio" name="escolaridade" id="superior-incompleto" value="superior-incompleto" <?= $_POST['escolaridade']=='superior-incompleto'?'checked':'';?>>
<h5>Superior Incompleto</h5>
</label>
<label for="superior">
<input type="radio" name="escolaridade" id="superior" value="superior" <?= $_POST['escolaridade']=='superior'?'checked':'';?>>
<h5>Superior</h5>
</label>
</label>
<label id="linteresses">
<h3>Interesses</h3>
<label for="economia">
<input type="checkbox" name="economia" id="economia" <?= isset($_POST['economia'])?'checked':'';?>>
<h5>Economia</h5>
</label>
<label for="turismo">
<input type="checkbox" name="turismo" id="turismo" <?= isset($_POST['turismo'])?'checked':'';?>>
<h5>Turismo</h5>
</label>
<label for="esporte">
<input type="checkbox" name="esporte" id="esporte" <?= isset($_POST['esporte'])?'checked':'';?>>
<h5>Esporte</h5>
</label>
<label for="tecnologia">
<input type="checkbox" name="tecnologia" id="tecnologia" <?= isset($_POST['tecnologia'])?'checked':'';?>>
<h5>Tecnologia</h5>
</label>
<label for="politica">
<input type="checkbox" name="politica" id="politica" <?= isset($_POST['politica'])?'checked':'';?>>
<h5>Política</h5>
</label>
<label for="cinema">
<input type="checkbox" name="cinema" id="cinema" <?= isset($_POST['cinema'])?'checked':'';?>>
<h5>Cinema</h5>
</label>
</label>
<input id="button" type="submit" value="Confirmar Envio">
</form>
</section>
<footer>
<h3>Chireia ©</h3>
</footer>
</body>
</html>