Aggiunta pagina registrazione

This commit is contained in:
2026-03-31 09:20:53 +02:00
parent 4985e5cbbf
commit c8b1846f27
2 changed files with 29 additions and 1 deletions
+1 -1
View File
@@ -19,7 +19,7 @@
<div class="no"> <div class="no">
<h2>Gestione Aeroporto</h2> <h2>Gestione Aeroporto</h2>
<a href="login.php"><button>Login</button></a><br> <a href="login.php"><button>Login</button></a><br>
<a href="https://cdn.mtdv.me/video/rick.mp4"><button>Registrati</button></a><br> <a href="register.php"><button>Registrati</button></a><br>
<a href="https://cdn.mtdv.me/video/rick.mp4"><button>Logout</button></a><br> <a href="https://cdn.mtdv.me/video/rick.mp4"><button>Logout</button></a><br>
</div> </div>
+28
View File
@@ -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>