Aggiunta pagina registrazione
This commit is contained in:
@@ -0,0 +1,28 @@
|
||||
<!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>
|
||||
Reference in New Issue
Block a user