-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathproposta.php
61 lines (45 loc) · 1.32 KB
/
proposta.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
<?php
$titulo = 'Envio de proposta de intercâmbio';
require_once ('header.php');
require_once ('nav.php');
?>
<main>
<h1>Envio de proposta para programa de intercâmbio</h1>
<form method="POST"
action="<?php echo htmlspecialchars($_SERVER['PHP_SELF']);?>">
<fieldset>
<legend>Dados do Curso</legend>
<p>
<label>Nome da escola/Agente:<input type="text" name="escolaagente"></label>
</p>
<p>
<label>País: <input type="text" name="pais"></label>
</p>
<p>
<label>Cidade: <input type="text" name="cidadeescola"></label>
</p>
<p>
<label>Tipo de curso <input type="text" name="tipocuros"></label>
</p>
<p>
<label>Data de Inicio: <input type="date" name="datainicio"></label>
</p>
<p>
<label>Data de Termino: <input type="date" name="datatermino"></label>
</p>
<p>
<label>Duração: <input type="text" name="duracao"></label>
</p>
<p>
<label>Material didático: <input type="radio" name="materialdidatico"
value="incluso"> <span>Incluso</span> <input type="radio"
name="materialdidatico" value="naoincluso"> <span>Não Incluso</span>
</label>
</p>
</fieldset>
<input type="submit" name="enviar" value="Enviar">
</form>
</main>
<?php
require_once 'footer.php';
?>