inserita gestione cambio password utenti proxy

This commit is contained in:
cmaffio
2016-05-16 15:50:57 +02:00
parent d01f3a895e
commit 6d7923c5d5
9 changed files with 393 additions and 2 deletions

23
proxy/ext/userlogin.php Normal file
View File

@@ -0,0 +1,23 @@
<?php view_top_proxy(); ?>
<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 "Utente:"; ?></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 view_footer_proxy(); ?>