Advertisement
Guest User

Untitled

a guest
Jun 25th, 2015
313
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 3.97 KB | None | 0 0
  1. <!DOCTYPE html>
  2. <html lang="en">
  3. <head>
  4. <meta charset="utf-8">
  5. <meta http-equiv="X-UA-Compatible" content="IE=edge">
  6. <meta name="viewport" content="width=device-width, initial-scale=1">
  7. <!-- The above 3 meta tags *must* come first in the head; any other head content must come *after* these tags -->
  8. <title>login Page</title>
  9.  
  10. <!-- Stylesheet -->
  11. <link href="css/styles.css" rel="stylesheet">
  12.  
  13. <!-- HTML5 shim and Respond.js for IE8 support of HTML5 elements and media queries -->
  14. <!-- WARNING: Respond.js doesn't work if you view the page via file:// -->
  15. <!--[if lt IE 9]>
  16. <script src="https://oss.maxcdn.com/html5shiv/3.7.2/html5shiv.min.js"></script>
  17. <script src="https://oss.maxcdn.com/respond/1.4.2/respond.min.js"></script>
  18. <![endif]-->
  19. </head>
  20. <body>
  21. <div class="font-welcome">
  22. <h1> Welcome to Site.</h1>
  23. <p>Connect with the MarketPlace and other fascinating people.
  24. </p>
  25. <div class="loginform cf">
  26. <form class="form signin" method="post">
  27. <div class="field"><label for="email">Email</label></div>
  28. <input type="email" required="" placeholder="yourname@email.com" name="usermail">
  29. <div class="field"><label for="password">Password</label></div>
  30. <input type="password" required="" placeholder="Password" name="password">
  31. <button class="loginbtn" type="submit">
  32. Log in
  33. </button>
  34. <div class="remember-forgot">
  35. <label class="t1-label remember">
  36. <input type="checkbox" checked="checked" name="remember_me" value="1">
  37. <span>Remember me</span>
  38. </label>
  39. <span class="separator">·</span>
  40. <a href="/account/begin_password_reset" class="forgot">Forgot password?</a>
  41. </div>
  42. </form>
  43. </div>
  44. <div class="signup cf">
  45. <form class="signup" method="post">
  46. <div class="field"><label for="email">Email</label></div>
  47. <input type="email" required="" placeholder="name@email.com" name="email">
  48. <div class="field"><label for="password">Password</label></div>
  49. <input type="password" required="" placeholder="Password" name="password">
  50. <select class="selector" required>
  51. <option value="">Please select</option>
  52. <option value="Individual">Individual</option>
  53. <option value="Business">Business</option>
  54. </select>
  55. <button class="loginbtn" type="submit">
  56. sign up
  57. </button>
  58. </div>
  59. </form>
  60. </body>
  61. </html>
  62.  
  63. @import url("http://fonts.googleapis.com/css?family=Oswald:400,700");
  64.  
  65. html {
  66. background: rgba(0, 0, 0, 0) url("../images/bg.jpg") repeat scroll center top / 100% auto;
  67. font-size: 10pt;
  68. }
  69.  
  70. h1 {
  71. color: white;
  72. font-family: "Oswald",sans-serif;
  73. font-size: 30px;
  74. padding: 20px;
  75. text-align: left;
  76. }
  77.  
  78. label {
  79. color: #999999;
  80. display: block;
  81. font-family: "Oswald",sans-serif;
  82. font-size: 25px;
  83. }
  84.  
  85. .loginform {
  86. background-color: rgba(250, 250, 250, 0.5);
  87. border-radius: 5px;
  88. border: 1px solid rgba(0, 0, 0, 0.3);
  89. box-shadow: 0px 0px 5px 0px rgba(0, 0, 0, 0.2), 0px 1px 0px 0px rgba(250, 250, 250, 0.5) inset;
  90. margin: 50px auto;
  91. padding: 25px;
  92. width: 410px;
  93. }
  94.  
  95. h2 {
  96. color: #066a75;
  97. font-family: "Oswald",sans-serif;
  98. font-size: 30px;
  99. text-align: center;
  100. }
  101.  
  102. .signup { background-color: rgba(250, 250, 250, 0.5);
  103. border-radius: 5px;
  104. border: 1px solid rgba(0, 0, 0, 0.3);
  105. box-shadow: 0px 0px 5px 0px rgba(0, 0, 0, 0.2), 0px 1px 0px 0px rgba(250, 250, 250, 0.5) inset;
  106. margin-left: 230px;
  107. width: 410px;
  108. }
  109.  
  110. p {
  111. color: white;
  112. font-family: "Oswald",sans-serif;
  113. font-size: 30px;
  114. padding: 20px;
  115. text-align: left;
  116. }
  117.  
  118. .loginbtn {
  119. color: black;
  120. display: block;
  121. font-family: "Oswald",sans-serif;
  122. margin: 5px;
  123. text-decoration: none;
  124. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement