Guest User

Untitled

a guest
Mar 8th, 2015
319
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.92 KB | None | 0 0
  1. <html>
  2. <head>
  3. <script type="text/javascript" src="js/script.js"></script>
  4. <style type="text/css">
  5. header {
  6. background-color:black;
  7. color:white;
  8. text-align:center;
  9. padding:5px;
  10. }
  11. nav {
  12. line-height:30px;
  13. background-color:#eeeeee;
  14. height:300px;
  15. width:100px;
  16. float:left;
  17. padding:5px;
  18. }
  19.  
  20. #wrapper {
  21. background-color:Gray;
  22. }
  23. .section {
  24. width:65%;
  25. float:left;
  26. border-right: thick double #000000;
  27. }
  28. .aside {
  29. width:30%;
  30. float:right;
  31.  
  32. }
  33. footer {
  34. background-color:black;
  35. color:white;
  36. clear:both;
  37. text-align:center;
  38. padding:5px;
  39. }
  40. textarea{
  41. width: 500px;
  42. }
  43. </style>
  44. <title>
  45. FreePaste!
  46. </title>
  47. </head>
  48. <body>
  49. <center>
  50. <h1>Welcome to free paste!</h1>
  51. </center>
  52.  
  53.  
  54. <div id="wrapper">
  55.  
  56. <div class="section">
  57. <form id="paste_form" action="save_paste.php" method="post">
  58. New paste! (limit = 64kB)
  59. <br><br>
  60. Paste Name : <br>
  61. <textarea name="title" form="paste_form" rows="1" cols="80"></textarea>
  62. <br>
  63. Paste:<br>
  64. <textarea name="paste" form="paste_form" rows="20" cols="100"></textarea>
  65. <br>
  66. <input type="submit" value="Done!" >
  67. </form>
  68. </div>
  69.  
  70. <div class="aside">
  71. <form class="login" id="login_form" action="login.php" method="post">
  72. <table form="login_form">
  73. <tr>
  74. <td>Username: </td>
  75. <td><input type="text" name="user" form="login_form" placeholder="Email"></td>
  76. </tr>
  77. <tr>
  78. <td>Password: </td>
  79. <td><input type="text" name="pass" form="login_form" placeholder="..."></td>
  80. </tr>
  81. <tr>
  82. <td></td>
  83. <td><input type="submit" value="Sign in"></td>
  84. </tr>
  85. </table>
  86.  
  87. <pre>New User? </pre>
  88. <input type="button" value="Sign Up!" onclick="register_page()">
  89.  
  90. </form>
  91. _________________________
  92. <h2>Popular pastes:</h2>
  93.  
  94. </div>
  95.  
  96. </div>
  97. </body>
  98. </div>
  99.  
  100. </html>
Advertisement
Add Comment
Please, Sign In to add comment