Questo sito utilizza cookies solo per scopi di autenticazione sul sito e nient'altro. Nessuna informazione personale viene tracciata. Leggi l'informativa sui cookies.
Username: Password: oppure
form di login crittografata senza Https - index.php

index.php

Caricato da:
Scarica il programma completo

  1. <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
  2. <html xmlns="http://www.w3.org/1999/xhtml">
  3. <head>
  4. <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
  5. <title>Login </title>
  6. <style type="text/css">
  7. html,body {
  8.         margin:0;
  9.         padding:0;
  10.         font-family:Tahoma;
  11.         font-size:12px;
  12. }
  13. input,textarea,select {
  14.         font-family:Tahoma;
  15.         font-size:12px;
  16. }
  17. </style>
  18. <script type="text/javascript" src="./lib/jquery-1.6.1.min.js"></script>
  19. <script type="text/javascript" src="./lib/jquery.jcryption.js" ></script>
  20. <script type="text/javascript">
  21. $(document).ready(function() {
  22.  
  23.         var $status = $('<div id="status" style="margin-top:15px;"><img src="loading.gif" alt="Loading..." title="Loading..." style=" margin-right:15px;" /><span></span></div>').hide();
  24.         var $statusText = $status.find("span");
  25.         $("#status_container").append($status);
  26.  
  27.         $("#fullForm").jCryption({
  28.                 collectionSpeed:250,
  29.                 encryptionSpeed:10,
  30.                 beforeEncryption:function() {
  31.                         $('#error').remove();
  32.                         $statusText.text("Loading Keys ...").parent().show();
  33.                         return true;
  34.                 }
  35.         });
  36.  
  37. });
  38. </script>
  39. </head>
  40.  
  41. <body>
  42.  <br>
  43. <form action="main.php" method="post" id="fullForm" class="general">
  44.  
  45. <table style="width: 60%; height: 142px;" cellpadding="0" cellspacing="0" bgcolor="#cccccc">
  46. <!--<table border="0" cellspacing="5" cellpadding="0"> -->
  47. <tbody>
  48. <tr><td colspan=3 align=center><b>Login   </b><font color=#E8E8E8><small> crypted form by ma.gi.a</small></font></td></tr>
  49. <tr>
  50. <td width="8%" ><img src="lock_open.png" /></td>
  51. <td width="10%">User:</td>
  52. <td><input class="text" name="User" type="text" /></td>
  53. </tr>
  54. <tr>
  55. <td width="8%"><img src="lock_open.png" /></td>
  56. <td width="10%">Password:</td>
  57. <td><input class="text" name="Passw" id="Passw" type="password" /></td>
  58. </tr>
  59. <tr>
  60. <td> </td>
  61. <td></td>
  62. <td><input title="Submit" alt="Submit" name="submitButton" type="submit" value="Submit" class="submit" /> <input title="Reset" alt="Reset" name="reset" type="reset" value="Reset" /></td>
  63. </tr>
  64. </tbody></table>
  65.  
  66. </form>
  67. <div id="status_container" style="text-align:center;"></div>
  68.  
  69. </body>
  70. </html>