Advertisement
Guest User

registration

a guest
Dec 19th, 2014
167
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.14 KB | None | 0 0
  1.  
  2.  
  3.  
  4. <html>
  5. <head>
  6. <style>
  7. body {
  8. background-color: #3366FF;
  9. }
  10.  
  11. h1 {
  12. color: white;
  13. text-align: center;
  14. font-family: Georgia;
  15.  
  16. }
  17.  
  18.  
  19. h6 {
  20. color: yellow;
  21. text-align: center;
  22. font-family: Georgia;
  23. font-size: 27px;
  24. }
  25.  
  26.  
  27. h2 {
  28. color: white;
  29. text-align: center;
  30.  
  31. font-family: Georgia;
  32. }
  33.  
  34. h3 {
  35. color: yellow;
  36. font-family: Georgia;
  37.  
  38. }
  39.  
  40. </style>
  41. </head>
  42. <?php
  43. echo'
  44. <body>
  45. <center><img src="Nimbus_Cloud_Logo.png" alt="Nimbus Cloud Logo" width="250";height="150"></center>
  46. <h6>Nimbus Cloud</h6>
  47.  
  48.  
  49.  
  50. <center>
  51. <h1>Registration</h1>
  52. <form action="http://localhost/registrationdb.php" method="post">
  53. <h2>Name : <input type="text" name="name"></h2>
  54. <h2>Username : <input type="text" name="username"></h2>
  55. <h2>Email Address : <input type="text" name="email"></h2>
  56. <h2>Password : <input type="password" name="password"></h2><br>
  57.  
  58.  
  59. <h3>Would you like to receive emails from Nimbus Cloud on any news updates?<input type="checkbox" name="emailupdates" value="Yes"></h3><br>
  60. <p><input type="submit" value="Submit"></p>
  61. </form>
  62.  
  63. Copyright (c) Nimbus Cloud
  64. ';
  65. ?>
  66. </center>
  67. </body>
  68. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement