Advertisement
Guest User

Untitled

a guest
Nov 21st, 2019
185
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.94 KB | None | 0 0
  1. <html>
  2. <body>
  3. <h1>Guestbook</h1>
  4.  
  5. <div id='posts'>
  6. </div>
  7.  
  8. <hr />
  9.  
  10. <form action='/post' method='post'>
  11. <input type='text' name='username' placeholder='Username' /><br />
  12. <textarea name='post' placeholder='Post text'></textarea><br />
  13. <input type='submit' />
  14. </form>
  15.  
  16. <script>
  17. document.body.onload = () =>
  18. void fetch('/posts')
  19. .then(posts => posts.json())
  20. .then(posts => posts.map(
  21. ({username, post}) => `
  22. <div>
  23. <b>${username}</b><br />
  24. ${post}
  25. </div>
  26. `))
  27. .then(posts => posts.join('<br />'))
  28. .then(posts => void (document.getElementById('posts').innerHTML = posts))
  29. </script>
  30. </body>
  31. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement