Advertisement
Guest User

Untitled

a guest
Jun 25th, 2016
127
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.91 KB | None | 0 0
  1. <!DOCTYPE html>
  2. <html lang="en">
  3. <head>
  4. <meta charset="UTF-8">
  5. <title>Book Blog</title>
  6. <link type="text/css" rel="stylesheet" href="styles/main.css" />
  7. <script src="scripts/book-libraly.js"></script>
  8. <script src="scripts/jquery-3.0.0.min.js"></script>
  9. </head>
  10. <body>
  11. <header id="menu">
  12. <a href="#" id="linkHome">Home</a>
  13. <a href="#" id="linkLogin">Login</a>
  14. <a href="#" id="linkRegister">Register</a>
  15. <a href="#" id="linkListBooks">List Books</a>
  16. <a href="#" id="linkCreateBooks">Create Books</a>
  17. <a href="#" id="linkLogout">Logout</a>
  18. </header>
  19. <main>
  20. <section id="loadingBox" >Loading...</section>
  21. <section id="infoBox" onlcick="$(this).fadeOut()">Info</section>
  22. <section id="errorBox" onclick="$(this).fadeOut()">Error</section>
  23. <section id="viewHome" >
  24. <h1>Welcome</h1>
  25. Welcome to our book library.
  26. </section>
  27. <section id="viewLogin" >
  28. <h1>Please login</h1>
  29. <form id="formLogin">
  30. <div>Username:</div>
  31. <div><input type="text" id="loginUser" required/></div>
  32. <div>Password:</div>
  33. <div><input type="password" id="loginPassword" required/></div>
  34. <div><input type="submit" value="Login"/></div>
  35. </form>
  36. </section>
  37. <section id="viewBooks" >
  38. <h1>Books</h1>
  39. <div id="Books"></div>
  40. </section>
  41. <section id="viewCreateBook" >
  42. <h1>Create new book</h1>
  43. <div>Title:</div>
  44. <div><input type="text" id="bookTitle" required/></div>
  45. <div>Author:</div>
  46. <div><input type="password" id="bookAuthor" required/></div>
  47. <div>Description:</div>
  48. <div><textarea id="bookDescription" rows="10" required></textarea></div>
  49. <div><input type="submit" value="Create"/></div>
  50. </section>
  51. </main>
  52. <footer>
  53. Books Library - Sample Project
  54. </footer>
  55. </body>
  56.  
  57. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement