Files
php-aeroporto-sessioni/register.php
T

28 lines
1.0 KiB
PHP

<!DOCTYPE html>
<html lang="it">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Registrazione - Gestione aeroporto</title>
<link rel="stylesheet" href="style.css">
</head>
<body>
<?php
if($_SERVER['REQUEST_METHOD'] == 'POST'){
echo "PUPPAMI LA FAVA<br><br>";
}
?>
<form class="form-group" action="" method="POST">
<h4 style="text-align: center;">Registrati</h4>
<label for="username">Nome utente</label>
<input type="text" id="username" name="username">
<label for="email">Indirizzo e-mail</label>
<input type="email" id="email" name="email">
<label for="password">Password</label>
<input type="password" id="password" name="password">
<label for="passwordConfirm">Conferma password</label>
<input type="password" id="passwordConfirm" name="passwordConfirm">
<input type="submit" value="Registrati">
</form>
</body>
</html>