Advertisement
Guest User

Untitled

a guest
Sep 9th, 2016
75
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.34 KB | None | 0 0
  1. body {
  2. background: #484848;
  3. color: white;
  4. margin:0px;
  5. }
  6. .pagetop{
  7. width:1280px
  8. }
  9. header{
  10. background: #D9853B;
  11. padding:15px 40px;
  12. margin:20px;
  13. }
  14. a{
  15. color:white;
  16. }
  17. div{
  18. padding:2px;
  19. }
  20. .pagetop nav h1,ul,li{
  21. display:inline;
  22. }
  23. nav ul,li{
  24. padding: 20px;
  25. }
  26. .signinform{
  27. margin:0 auto;
  28. margin-top:20px;
  29. max-width: 600px;
  30. }
  31. .inputleft{
  32. width: 30%;
  33. float: left;
  34. text-align: right;
  35. }
  36.  
  37. .inputright{
  38. width: 65%;
  39. margin-left: 10px;
  40. float:left;
  41. }
  42. .submitbutton{
  43. width: 60%;
  44. align-self: center;
  45. }
  46.  
  47. <html>
  48. <head>
  49. <link rel="stylesheet" href="src/static/base.css">
  50. </head>
  51. <style
  52. <body>
  53. <form method="post" class="signinform">
  54. <div class="inputleft">
  55. UserName:
  56. </div>
  57. <div class="inputright">
  58. <input type="text" name="username" value={{username}}>
  59. </div>
  60. <div class="inputleft">
  61. Password:
  62. </div>
  63. <div class="inputright">
  64. <input type="password" name="pwd">
  65. </div>
  66. <div class="inputleft">
  67. Verify Password:
  68. </div>
  69. <div class="inputright">
  70. <input type="password" name="pwdverify">
  71. </div>
  72. <div class="inputleft">
  73. Email(Optional):
  74. </div>
  75. <div class="inputright">
  76. <input type="text" name="email" value={{email}}>
  77. </div>
  78. <div>
  79. <input type="submit">
  80. </div>
  81. <p> Hey I am Tarun! Hey I am Tarun! Hey I am Tarun! Hey I am Tarun!</p>
  82. </body>
  83. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement