-
Notifications
You must be signed in to change notification settings - Fork 0
/
formulario.php
50 lines (48 loc) · 2.03 KB
/
formulario.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
<form method="post">
<input type="hidden" name="id" value="<?php echo $tarefa['id'];?>">
<fieldset>
<legend>Nova tarefa</legend>
<label>
Tarefa:
<?php if ($tem_erros && isset($erros_validacao['nome'])) : ?>
<span class="erro">
<?php echo $erros_validacao['nome'];?>
</span>
<?php endif;?>
<input type="text" name="nome" value="<?php echo $tarefa['nome'];?>">
</label>
<label>
Descrição (Opcional):
<textarea name="descricao"><?php echo $tarefa['descricao'];?></textarea>
</label>
<label>
Prazo (Opcional):
<?php if ($tem_erros && isset($erros_validacao['prazo'])) : ?>
<span class="erro">
<?php echo $erros_validacao['prazo'];?>
</span>
<?php endif;?>
<input type="text" name="prazo" value="<?php echo traduz_data_para_exibir($tarefa['prazo']);?>">
</label>
<fieldset>
<legend>Prioridade:</legend>
<label for="">
<input type="radio" name="prioridade" value="1" <?php echo ($tarefa['prioridade'] == 1) ? 'checked' : '';?>>
Baixa
<input type="radio" name="prioridade" value="2" <?php echo ($tarefa['prioridade'] == 2) ? 'checked' : '';?>>
Media
<input type="radio" name="prioridade" value="3" <?php echo ($tarefa['prioridade'] == 3) ? 'checked' : '';?>>
Alta
</label>
</fieldset>
<label>
Tarefa concluída:
<input type="checkbox" name="concluida" value="1" <?php echo ($tarefa['concluida'] == 1) ? 'checked' : '';?>>
</label>
<label for="">
Lembrete por e-mail:
<input type="checkbox" name="lembrete" value="1">
</label>
<input type="submit" value="<?php echo ($tarefa['id'] > 0) ? 'Atualizar' : 'Cadastrar';?>">
</fieldset>
</form>