Guest User

Untitled

a guest
Sep 11th, 2018
122
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.78 KB | None | 0 0
  1. the css
  2. .register td{
  3. opacity:0.4;
  4. filter:alpha(opacity=40); /* For IE8 and earlier */
  5. }
  6.  
  7. what i have below
  8. <tr>
  9. <td class="register" bgcolor="#FF3300" align="center">
  10. <form action="<?php echo $_SERVER['PHP_SELF']; ?>" method="post">
  11.  
  12. <table border="0">
  13.  
  14. <tr><td>Username:</td><td>
  15.  
  16. <input type="text" name="username" maxlength="60">
  17.  
  18. </td></tr>
  19.  
  20. <tr><td>Password:</td><td>
  21.  
  22. <input type="password" name="pass" maxlength="10">
  23.  
  24. </td></tr>
  25.  
  26. <tr><td>Confirm Password:</td><td>
  27.  
  28. <input type="password" name="pass2" maxlength="10">
  29.  
  30. </td></tr>
  31.  
  32. <tr><th colspan=2><input type="submit" name="submit"
  33. value="Register"></th></tr> </table>
  34.  
  35. </form>
  36. </td>
  37. </tr>
Add Comment
Please, Sign In to add comment