Eai, boa tarde. Estou desenvolvendo um site, e na página de registro onde estou tentando inserir título e labels para o cadastro, não aparece nada além do header da página. Segue o código abaixo da página de registro, junto com o print do site:
<?php
?>
<!DOCTYPE HTML>
<html>
<head>
<title>Registro - Ovelha Clone</title>
<link rel="stylesheet" type="text/css" href="style.css">
</head>
<body>
<?php include("header.php") ?>
<center>
<h1>Registro</h1>
<div class="panel">
<form method="POST"
<table width="50%">
<tr>
<td style="float: right;">Nome</td>
<td><input type="name" name="nome" placeholder="Nome"></td>
</tr>
</table>
</form>
</div>
</center>
</body>