Primo import

This commit is contained in:
cmaffio
2015-10-08 11:41:53 +02:00
parent 22de29deda
commit dd934cb895
40 changed files with 431 additions and 29 deletions

23
php.deleteme/userlogin.php Executable file
View File

@@ -0,0 +1,23 @@
<?php include_once ("top.php"); ?>
<form name="login" method="post">
<table cellpadding="0" cellspacing="10" border="0" id="login_table">
<tr align="center" valign="middle">
<td colspan="2"><h4><?php print "Benvenuto" ?></h4></td>
</tr>
<tr>
<td><?php print "Indirizzo E-Mail:"; ?></td>
<td><input type="text" name="fUsername" value="<?php print $tUsername; ?>" /></td>
</tr>
<tr>
<td><?php print "Password:"; ?></td>
<td><input type="password" name="fPassword" /></td>
</tr>
<tr>
<td colspan="2" align="center"><input type="submit" name="submit" value="<?php print "Accedi"; ?>" /></td>
</tr>
<tr>
<td colspan="2" align="center"<?php print $tMessage; ?></td>
</tr>
</table>
</form>
<?php include_once ("footer.php"); ?>