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
167
168
169
|
<? include_once("init.php"); ?> <!DOCTYPE html> <html lang="en"> <head> <? include("valida.jsp"); include_once("functions.php");
foreach ($_POST as $campo => $valor ){ $$campo = strip_tags(trim($valor)); } $cpf1 = anti_injection2($_POST['cpf1']); //Retirar todos os caracteres que nao sejam 0-9 do CNPJ/CPF $cpf=sonumeros($cpf1);
//verificação da Validade do CNPJ ou CPF. CalculaDocto($cpf); $cpf_imp = substr($cpf, 0, 3).'.'.substr($cpf, 3, 3).'.'.substr($cpf, 6, 3).'-'.substr($cpf, 9, 2); $sql_1 = mysql_query("select cpf from curriculo where cpf='$cpf'") or die ("Erro ao buscar informações"); $cont = mysql_num_rows($sql_1); if ($cont > 0){ echo "<script>window.location='banco-de-talentos.php?cpfe=existente'</script>"; } ?> <meta charset="iso-8859-1"> <meta http-equiv="X-UA-Compatible" content="IE=edge"> <meta name="viewport" content="width=device-width, initial-scale=1"> <meta name="description" content=""> <meta name="author" content=""> <link rel="icon" href="../../favicon.ico">
<title>Sivana</title> <base href="<?php echo (($request_type == 'SSL') ? HTTPS_SERVER : HTTP_SERVER) . DIR_WS_CATALOG; ?>" /> <!-- Bootstrap core CSS --> <link href="dist/css/bootstrap.min.css" rel="stylesheet">
<!-- Custom styles for this template --> <link href="css/sivana.css" rel="stylesheet"> <!-- Owl Carousel Assets --> <link href="owl-carousel/owl.carousel.css" rel="stylesheet"> <link href="owl-carousel/owl.theme.css" rel="stylesheet"> <!-- Just for debugging purposes. Don't actually copy these 2 lines! --> <!--[if lt IE 9]><script src="../../assets/js/ie8-responsive-file-warning.js"></script><![endif]--> <script src="assets/js/ie-emulation-modes-warning.js"></script>
<!-- IE10 viewport hack for Surface/desktop Windows 8 bug --> <script src="assets/js/ie10-viewport-bug-workaround.js"></script> <script src="https://ajax.googleapis.com/ajax/libs/jquery/1.11.1/jquery.min.js"></script> <!-- HTML5 shim and Respond.js IE8 support of HTML5 elements and media queries --> <!--[if lt IE 9]> <script src="https://oss.maxcdn.com/html5shiv/3.7.2/html5shiv.min.js"></script> <script src="https://oss.maxcdn.com/respond/1.4.2/respond.min.js"></script> <![endif]--> </head>
<body> <? include ("topo-curriculo.php")?> <!-- Static navbar --> <div class="conteudo"> <div class="container"> <div class="vintespaco"></div> <div class=""> <div class="principal">
<h1>Cadastrar Currículo</h1> <p>Para iniciar o cadastro de seu currículo, você deve informar uma senha e e-mail:</p> <div class="clearfix"></div> <div class="row"> <div class="col-md-12"> <div class="block"> <h1><i><img src="images/icon-calendario.png" class="nocem" /></i>Cadastrar Currículo</h1> <div class="news"> <form action="central.php" id="cad" name="cad" onsubmit="return forminicio()" method="post"> <label>CPF:</label> <p><?php echo $cpf_imp; ?></p> <input type="hidden" id="cpf" name="cpf" value="<?= $cpf; ?>"> <div class="row"> <div class="col-md-6"> <label>Senha</label> <div class="input-group"> <span class="input-group-addon"><img src="images/cadeado.png" class="nocem" /></span> <input type="password" class="form-control" placeholder="senha" name="senha" id="senha"> </div> </div> <div class="col-md-6"> <label>Confirmar Senha</label> <div class="input-group"> <span class="input-group-addon"><img src="images/cadeado.png" class="nocem" /></span> <input type="password" class="form-control" placeholder="confirmar senha" name="csenha" id="csenha" > </div> </div> </div><!-- ../ Row --> <div class="vintespaco"></div> <label>Email</label> <div class="input-group"> <span class="input-group-addon"><img src="images/user.png" class="nocem" /></span> <input type="text" class="form-control" placeholder="email" id="email" name="email"> </div> <div class="vintespaco"></div> <input type="submit" class="btn botao" value="Continuar Cadastro"></form> </form> </div> </div> </div> </div> <div class="clearfix"></div> </div> </div><!-- col 8 --> <div class="vintespaco"></div> </div> <!-- /container --> <? include ("rodape.php") ?> </div><!-- Conteudo do site-->
<!-- Bootstrap core JavaScript ================================================== --> <!-- Placed at the end of the document so the pages load faster --> <script src="dist/js/bootstrap.min.js"></script> <script src="owl-carousel/owl.carousel.js"></script> <script> $(document).ready(function() { $("#owl-demo").owlCarousel({ autoPlay: 3000, navigation: true, slideSpeed: 300, paginationSpeed: 400, singleItem: true
// "singleItem:true" is a shortcut for: // items : 1, // itemsDesktop : false, // itemsDesktopSmall : false, // itemsTablet: false, // itemsMobile : false
}); $("#owl-demo2").owlCarousel({ autoPlay: 5000, navigation: false, pagination: false, slideSpeed: 900, paginationSpeed: 400, singleItem: true
// "singleItem:true" is a shortcut for: // items : 1, // itemsDesktop : false, // itemsDesktopSmall : false, // itemsTablet: false, // itemsMobile : false
}); }); </script> </body> </html>
|