47 lines
585 B
PHP
47 lines
585 B
PHP
|
|
<?php
|
|
|
|
require_once ('functions.php');
|
|
include('header.html');
|
|
|
|
///////////////////////////
|
|
echo<<<_css
|
|
|
|
<style>
|
|
|
|
|
|
</style>
|
|
|
|
|
|
_css;
|
|
echo "\n";
|
|
///////////////////////////
|
|
|
|
echo<<<_html
|
|
|
|
|
|
<form method="get" action="stampa.php">
|
|
|
|
Nome: <input type="text" required autofocus name="name" ><br>
|
|
Mail: <input type="email" required name ="mail" ><br>
|
|
Password: <input type="password" required name ="password_1" ><br>
|
|
Verifica Password: <input type="password" required name ="password_2" ><br>
|
|
<input type="submit" value="Invia">
|
|
|
|
|
|
</form>
|
|
|
|
|
|
_html;
|
|
|
|
|
|
|
|
|
|
|
|
|
|
include ('footer.html');
|
|
|
|
|
|
|
|
|
|
?>
|