Advertisement
Guest User

index.html av andrew92

a guest
Oct 24th, 2013
50
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
HTML 1.32 KB | None | 0 0
  1. <html>
  2. <head>
  3.     <meta http-equiv="content-type" content="text/html;charset=utf-8" />
  4.     <style type='text/css'>
  5.         table {
  6.             background:#ccc;
  7.             margin:20px;
  8.             border:#ccc 1px solid;
  9.             -moz-border-radius:10px;
  10.             -webkit-border-radius:10px;
  11.             border-radius:10px;
  12.             margin-left: auto;
  13.             margin-right: auto;
  14.         }
  15.            
  16.         table th {padding:4px 10px}
  17.  
  18.         table td {
  19.             background:#fff;
  20.             padding:2px 10px 4px 10px;
  21.         }
  22.            
  23.         table tr:last-child td:first-child {
  24.             -moz-border-radius-bottomleft:10px;
  25.             -webkit-border-bottom-left-radius:10px;
  26.             border-bottom-left-radius:10px;
  27.         }
  28.            
  29.         table tr:last-child td:last-child {
  30.             -moz-border-radius-bottomright:10px;
  31.             -webkit-border-bottom-right-radius:10px;
  32.             border-bottom-right-radius:10px;
  33.         }
  34.  
  35.         table.collapsed {border-collapse:collapse} 
  36.     </style>
  37. </head>
  38. <body>
  39.    
  40.     <form method="POST" action="sendLogin.php">
  41.         <table>
  42.             <tr>
  43.                 <th colspan="2" style="text-align: center;">Brukerpålogging</th>
  44.             <tr>
  45.                 <td>Brukernavn</td>
  46.                 <td><input type="text" name="username" /></td>
  47.             </tr>
  48.             <tr>
  49.                 <td>Passord</td>
  50.                 <td><input type="password" name="password" /></td>
  51.             </tr>
  52.             <tr>
  53.                 <td colspan="2" style="text-align: center;"><input type="submit" value="Logg inn" name="sendData" /></td>
  54.             </tr>
  55.         </table>
  56.     </form>
  57. </body>
  58. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement