-
Notifications
You must be signed in to change notification settings - Fork 0
/
cadjobs.php
75 lines (65 loc) · 2.52 KB
/
cadjobs.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
<?php
include "menu.php";
?>
<!doctype html>
<html lang = "pt-br">
<head>
<meta charset = "utf-8" />
<meta content = "width = device-width, initial-scale = 1, escala máxima = 1" name = "viewport">
<title>Cadastrar Jobs</title>
<link href = "css.css" rel = "stylesheet" />
</head>
<body>
<br>
<form id="cadastro" name="cadastro" method="post">
<table width="625" border="0">
<tr>
<td width="69">Título:</td>
<td width="546"><input name="titulo" type="text" id="titulo" size="70" maxlength="60" />
<span class="style1"></span></td>
<tr>
<td width="69">Descrição:</td>
<td width="800"><input name="descricao" type="text" id="descricao" size="70" maxlength="1000" />
<span class="style1"></span></td>
</tr>
<tr>
<td width="69">Requisitos:</td>
<td width="546"><input name="requisito" type="text" id="requisito" size="70" maxlength="1000" />
<span class="style1"></span></td>
</tr>
<tr>
<td width="69">Tipo:</td>
<td width="546"><form name=tipo>
<input type="radio" name=myradio value="CLT">CLT
<input type="radio" name=myradio value="PJ">PJ
<input type="radio" name=myradio value="Freelancer">Freelancer
</form>
<span class="style1"></span></td>
</tr>
<tr>
<td width="69">Salário:</td>
<td width="546"><form name=tipo>
<input type="radio" name=myradio value="tres">até R$3.000,00<br>
<input type="radio" name=myradio value="seis">R$3.000,00 a R$6.000,00<br>
<input type="radio" name=myradio value="maisdeseis">R$6.000 a R$9.000,00<br>
<input type="radio" name=myradio value="maisdenove">acima de R$9.000,00<br>
<input type="radio" name=myradio value="porhora">Valor por hora a combinar<br>
</form>
<span class="style1"></span></td>
</tr>
<tr>
<td>E-mail:</td>
<td><input name="email" type="text" id="email" size="70" maxlength="60" />
<span class="style1"></span></td>
</tr>
<tr>
<td colspan="2"><p>
<input name="cadastrar" type="submit" id="cadastrar" value="Cadastrar Jobs" />
<input name="limpar" type="reset" id="limpar" value="Limpar Campos preenchidos!" />
<input name="voltar" type="submit" id="voltar" value="Voltar" onClick="window.open('index.php')" target="_self"/>
</tr>
</tr>
</table>
</form>
</body>
</html>