Advertisement
Guest User

Untitled

a guest
Jun 20th, 2016
64
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.98 KB | None | 0 0
  1. <!DOCTYPE html>
  2. <html lang="en">
  3. <head>
  4. <meta charset="UTF-8">
  5. <title>Login</title>
  6. <link type="text/css" rel="stylesheet" href="style.css">
  7. <link type="text/css" rel="stylesheet" href="form-style.css">
  8. </head>
  9. <body>
  10. <div class="wrapper">
  11.  
  12. <aside class="sidebar">
  13. <div class="logo"><img src="logo_sidebar.png" alt=""></div>
  14. <hr>
  15. <nav>
  16. </nav>
  17. </aside>
  18.  
  19. <main>
  20. <header class="blog-title">Login</header>
  21.  
  22. <footer><p class="footer-text">&copy; Software University Foundation, No Rights Reserved</p></footer>
  23. </main>
  24.  
  25.  
  26. <aside class="sidebar">
  27. <div class="logo"><img src="logo_sidebar.png" alt="logo"></div>
  28. <hr>
  29. <nav>
  30. <ul>
  31. <a href="index.html" class="single-menu-element-link"><li class="single-menu-element">Home</li></a>
  32. <a href="login.html" class="single-menu-element-link"><li class="single-menu-element">Login</li></a>
  33. <a href="register.html" class="single-menu-element-link"><li class="single-menu-element">Register</li></a>
  34. </ul>
  35.  
  36. <hr>
  37. <hr2 class="recent-posts-title">Recent Posts</hr2>
  38. <hr>
  39. <ul>
  40. <a href="#" class="single-menu-element-link"><li class="single-recent-post">Example 1</li></a>
  41. <a href="#" class="single-menu-element-link"><li class="single-recent-post">Example 2</li></a>
  42. <a href="#" class="single-menu-element-link"><li class="single-recent-post">Example 3</li></a>
  43. <a href="#" class="single-menu-element-link"><li class="single-recent-post">Example 4</li></a>
  44. <a href="#" class="single-menu-element-link"><li class="single-recent-post">Example 5</li></a>
  45. </ul>
  46. </nav>
  47. </aside>
  48.  
  49. <div class="user-login-block">
  50. <form>
  51. <h1 class="title-form">Username:</h1>
  52. <input type="text" value="" placeholder="Enter Username" id="username"/>
  53. <h1 class="title-form">Password:</h1>
  54. <input type="password" value="" placeholder="Enter Password" id="password"/>
  55. <br>
  56. </form>
  57. </div>
  58.  
  59. <form>
  60. <h1 class="title-form">Username:</h1>
  61. <input type="text" value="" placeholder="Enter Username" id="username"/>
  62. <h1 class="title-form">Password:</h1>
  63. <input type="password" value="" placeholder="Enter Password" id="password"/>
  64. <br>
  65. <button id="login-request-button">Login</button>
  66. </form>
  67.  
  68. <form>
  69. <h1 class="title-form">Username:</h1>
  70. <input type="text" value="" placeholder="Enter Username"/>
  71. <h1 class="title-form">Password:</h1>
  72. </form>
  73. </div>
  74. </body>
  75. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement