-
Notifications
You must be signed in to change notification settings - Fork 1
/
index.php
34 lines (31 loc) · 858 Bytes
/
index.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
<?php
include "servicos/servicoMensagemSessao.php";
?>
<!DOCTYPE html>
<html lang="pt-br">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta name="author" content="">
<meta name="description" content="">
<title>Formulário de inscrição</title>
</head>
<body>
<p>FORMULÁRIO PARA INSCRIÇÃO DE COMPETIDORES</p>
<form action="script.php" method="post">
<?php
$mensagemDeSucesso = obterMensagemSucesso();
if (!empty($mensagemDeSucesso)) {
echo $mensagemDeSucesso;
}
$mensagemDeErro = obterMensagemErro();
if (!empty($mensagemDeErro)) {
echo $mensagemDeErro;
}
?>
<p>Seu nome: <input type="text" name="nome"></p>
<p>Sua idade: <input type="text" name="idade"></p>
<p><input type="submit" value="Enviar dados do competidor"></p>
</form>
</body>
</html>