Advertisement
Guest User

Untitled

a guest
Sep 26th, 2017
70
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.02 KB | None | 0 0
  1. <div>
  2. <div id="reg_input_description">
  3. <ul id="reg_input_list">
  4. <li>Username:</li>
  5. <li><font size="2" >Please chose a nickname <br /> with alpha-numeric characters only.</font></li>
  6. <li class="reglist_one">First Name:</li>
  7. <li class="reglist_one">Last Name:</li>
  8. <li class="reglist_one">Password:</li>
  9. <li><font size="2" >Use at least one number and one <br />capital letter.</font></li>
  10. <li class="reglist_one">Confirm Password:</li>
  11. <li class="reglist_one">Email: </li>
  12. </ul>
  13. </div>
  14. <div id="reg_error_output">
  15. <span id = "central_username_output" ></span> <br />
  16. <span id = "central_first_name_output" ></span> <br />
  17. <span id = "central_last_name_output" > </span> <br />
  18. <span id = "central_password_output" ></span> <br />
  19. <span id = "central_confirm_password_output" ></span> <br />
  20. <span id = "central_email_output" ></span> <br />
  21. </div>
  22. <div id="reg_input_fields">
  23. <ul id="reg_field_list">
  24. <li><input type = "text" class = "inputbox" id = "registration_username"></li>
  25. <li class="reglist_two"> <input type = "text" class = "inputbox" id = "registration_first_name"></li>
  26. <li class="reglist_three"> <input type = "text" class = "inputbox" id = "registration_last_name"> </li>
  27. <li class="reglist_three"><input type = "password" class = "inputbox" id = "registration_password" maxlength = "14"> </li>
  28. <li class="reglist_two"> <input type = "password" class = "inputbox" id = "registration_confirm_password" maxlength = "14"> </li>
  29. <li class="reglist_three"> <input type = "text" class = "inputbox" id = "registration_email"></li>
  30. </ul>
  31. </div>
  32. </div>
  33.  
  34. #reg_input_description
  35. {
  36. float: left;
  37. line-height: 15pt;
  38. }
  39.  
  40. #reg_input_list
  41. {
  42. list-style:none;
  43. margin-top: 0px;
  44. }
  45.  
  46. #reg_output_list
  47. {
  48. list-style:none;
  49. margin-top: 0px;
  50. }
  51.  
  52. #reg_input_fields
  53. {
  54. list-style:none;
  55. margin-top:20px;
  56. }
  57. .reglist_one
  58. {
  59. margin-top: 20px;
  60. }
  61.  
  62. .reglist_two
  63. {
  64. margin-top: 59px;
  65. }
  66.  
  67. .reglist_three
  68. {
  69. margin-top: 18px;
  70. }
  71.  
  72. #reg_input_fields
  73. {
  74. line-height: 16pt;
  75. position: relative;
  76. left: 10px;
  77. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement