Advertisement
Dekameron

Untitled

Jun 15th, 2014
392
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.17 KB | None | 0 0
  1. <!DOCTYPE html>
  2. <html lang="en">
  3. <head>
  4. <meta charset="UTF-8">
  5. <link rel="stylesheet" href="css/simple_form.css">
  6. <title>Simple Form</title>
  7. </head>
  8. <body>
  9. <div id="wrapper">
  10. <h2 id="form_header">Enter the system</h2>
  11. It is necessery to login in Your account in order to sign in for a course.
  12. <div id="register_table_div">
  13. <form action="" method="POST">
  14. <table id="register_table">
  15. <th>
  16. <h3>
  17. Are you new? <span id="register">Register</span>
  18. </h3>
  19. </th>
  20. <tr>
  21. <td>
  22. <input type="text" placeholder="User name" class="text_inputs" required>
  23. </td>
  24. </tr>
  25. <tr>
  26. <td>
  27. <input type="email" placeholder="Email" class="text_inputs" required>
  28. </td>
  29. </tr>
  30. <tr>
  31. <td>
  32. <input type="password" placeholder="Password" class="text_inputs" required>
  33. </td>
  34. </tr>
  35. <tr>
  36. <td>
  37. <input type="password" placeholder="Conform Password" class="text_inputs" required>
  38. </td>
  39. </tr>
  40. <tr>
  41. <td id="submit_td">
  42. <input type="submit" value="Register" id="register_btn">
  43. </td>
  44. </tr>
  45. </table>
  46. </form>
  47. <form action="" method="POST">
  48. <table id="login_table">
  49. <th id="login_th">
  50. <h3>
  51. Already a student? Login
  52. </h3>
  53. <tr>
  54. <td>
  55. <input type="text" placeholder="User name" class="text_inputs" required>
  56. </td>
  57. </tr>
  58. <tr>
  59. <td>
  60. <input type="password" placeholder="Password" class="text_inputs" required>
  61. </td>
  62. </tr>
  63. <tr>
  64. <td id="login_submit_td">
  65. <span id="remember_me">
  66. <label>
  67. <input type="checkbox" id="checkbox_rememberme">Remember me?
  68. </label>
  69. </span>
  70. <span id="login_btn">
  71. <input type="submit" value="Login" id="login_submit_btn">
  72. </span>
  73. </td>
  74. </tr>
  75. <tr>
  76. <td>
  77. <a href="#" id="forgot_password">Forgot Password</a>
  78. </td>
  79. </tr>
  80. </th>
  81. </table>
  82. </form>
  83. </div> <!-- End of register_table_div -->
  84. </div> <!-- End of wrapper div -->
  85. </body>
  86. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement